@gemdoq/codi 0.2.3 → 0.2.4
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.
- package/dist/cli.js +4 -1
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -153,7 +153,10 @@ var init_renderer = __esm({
|
|
|
153
153
|
unescape: true,
|
|
154
154
|
emoji: false,
|
|
155
155
|
width: process.stdout.columns || 100,
|
|
156
|
-
tab: 2
|
|
156
|
+
tab: 2,
|
|
157
|
+
// 제목에서 # 기호를 제거하고 깔끔하게 표시
|
|
158
|
+
showSectionPrefix: false,
|
|
159
|
+
reflowText: true
|
|
157
160
|
});
|
|
158
161
|
marked.setOptions({ renderer });
|
|
159
162
|
}
|