@stacksjs/stx 0.1.16 → 0.2.0
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/animation.d.ts +1 -1
- package/dist/cli.js +222 -221
- package/dist/config.d.ts +1 -1
- package/dist/formatter.d.ts +4 -0
- package/dist/i18n.d.ts +1 -1
- package/dist/index.js +206 -205
- package/dist/plugin.d.ts +1 -0
- package/package.json +5 -4
package/dist/config.d.ts
CHANGED
package/dist/formatter.d.ts
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
* Format stx file content
|
|
3
3
|
*/
|
|
4
4
|
export declare function formatStxContent(content: string, options?: FormatterOptions): string;
|
|
5
|
+
/**
|
|
6
|
+
* Format markdown file content, processing stx code blocks
|
|
7
|
+
*/
|
|
8
|
+
export declare function formatMarkdownContent(content: string, options?: FormatterOptions): string;
|
|
5
9
|
/**
|
|
6
10
|
* stx file formatter for automatically formatting .stx files
|
|
7
11
|
*/
|
package/dist/i18n.d.ts
CHANGED