@quartz-community/remark-obsidian 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/index.d.ts +3 -1
- package/dist/index.js +1373 -398
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -85,6 +85,8 @@ declare function tagToMarkdown(): Options;
|
|
|
85
85
|
|
|
86
86
|
declare function customTaskCharTransform(tree: Root, source?: string): void;
|
|
87
87
|
|
|
88
|
+
declare function taskCharToMarkdown(): Options;
|
|
89
|
+
|
|
88
90
|
interface RemarkObsidianOptions {
|
|
89
91
|
wikilinks?: boolean;
|
|
90
92
|
highlights?: boolean;
|
|
@@ -95,4 +97,4 @@ interface RemarkObsidianOptions {
|
|
|
95
97
|
}
|
|
96
98
|
declare function remarkObsidian(userOpts?: RemarkObsidianOptions): undefined | ((tree: Root, file: any) => void);
|
|
97
99
|
|
|
98
|
-
export { type Comment, type Highlight, type RemarkObsidianOptions, type Tag, type Wikilink, commentFromMarkdown, commentSyntax, commentToMarkdown, customTaskCharTransform, remarkObsidian as default, highlightFromMarkdown, highlightSyntax, highlightToMarkdown, tagFromMarkdown, tagSyntax, tagToMarkdown, wikilinkFromMarkdown, wikilinkSyntax, wikilinkToMarkdown };
|
|
100
|
+
export { type Comment, type Highlight, type RemarkObsidianOptions, type Tag, type Wikilink, commentFromMarkdown, commentSyntax, commentToMarkdown, customTaskCharTransform, remarkObsidian as default, highlightFromMarkdown, highlightSyntax, highlightToMarkdown, tagFromMarkdown, tagSyntax, tagToMarkdown, taskCharToMarkdown, wikilinkFromMarkdown, wikilinkSyntax, wikilinkToMarkdown };
|