@team-monolith/cds 1.63.1 → 1.63.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -177,11 +177,11 @@ const mapToTableCells = (textContent) => {
|
|
|
177
177
|
const SHEET_INPUT = {
|
|
178
178
|
type: "element",
|
|
179
179
|
dependencies: [SheetInputNode],
|
|
180
|
-
export: (node
|
|
180
|
+
export: (node) => {
|
|
181
181
|
if (!$isSheetInputNode(node)) {
|
|
182
182
|
return null;
|
|
183
183
|
}
|
|
184
|
-
return "```\n" + node.getValue() + "```\n";
|
|
184
|
+
return "```\n" + node.getValue() + "\n```\n";
|
|
185
185
|
},
|
|
186
186
|
// replace는 사실 상 구현하지 않습니다.
|
|
187
187
|
// 따라서 regExp도 절대 검색되지 않는 값으로 설정합니다.
|