MD化ロジックを修正
This commit is contained in:
BIN
機能仕様書作成.xlsm
BIN
機能仕様書作成.xlsm
Binary file not shown.
@@ -97,13 +97,16 @@ Sub ExportMarkdown_Complete()
|
|||||||
colLetter = items(key)(0)
|
colLetter = items(key)(0)
|
||||||
cond = items(key)(1)
|
cond = items(key)(1)
|
||||||
|
|
||||||
|
Dim cellValue As String
|
||||||
|
|
||||||
If cond = "種別(固定)" Then
|
If cond = "種別(固定)" Then
|
||||||
categoryFixed = dataWs.Range(colLetter).Value
|
categoryFixed = dataWs.Range(colLetter).Value
|
||||||
|
ElseIf cond = "種別(表)" Then
|
||||||
|
cellValue = dataWs.Range(colLetter).Value
|
||||||
Else
|
Else
|
||||||
Dim colNum As Long
|
Dim colNum As Long
|
||||||
colNum = Columns(colLetter).Column
|
colNum = Columns(colLetter).Column
|
||||||
|
|
||||||
Dim cellValue As String
|
|
||||||
cellValue = dataWs.Cells(r, colNum).Value
|
cellValue = dataWs.Cells(r, colNum).Value
|
||||||
cellValue = Replace(cellValue, vbCrLf, vbLf)
|
cellValue = Replace(cellValue, vbCrLf, vbLf)
|
||||||
cellValue = Replace(cellValue, Chr(13), vbLf)
|
cellValue = Replace(cellValue, Chr(13), vbLf)
|
||||||
|
|||||||
Reference in New Issue
Block a user