kempo-ui 0.4.6 → 0.4.8
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/CHANGELOG.md +11 -0
- package/dist/components/Markdown.js +1 -0
- package/dist/components/Timestamp.js +1 -1
- package/dist/utils/formatTimestamp.js +1 -1
- package/docs/components/accordion.html +4 -0
- package/docs/components/aside.html +4 -0
- package/docs/components/calendar.html +4 -0
- package/docs/components/card.html +4 -0
- package/docs/components/chat.html +4 -0
- package/docs/components/code-editor.html +4 -0
- package/docs/components/color-picker.html +4 -0
- package/docs/components/combobox.html +4 -0
- package/docs/components/content-slider.html +4 -0
- package/docs/components/context.html +4 -0
- package/docs/components/dialog.html +4 -0
- package/docs/components/dropdown.html +4 -0
- package/docs/components/filter-list.html +4 -0
- package/docs/components/focus-capture.html +4 -0
- package/docs/components/html-editor.html +4 -0
- package/docs/components/hybrid-component.html +4 -0
- package/docs/components/icon.html +4 -0
- package/docs/components/import.html +4 -0
- package/docs/components/light-component.html +4 -0
- package/docs/components/markdown-editor.html +4 -0
- package/docs/components/markdown.html +650 -0
- package/docs/components/nav-spacer.html +4 -0
- package/docs/components/nav.html +4 -0
- package/docs/components/photo-viewer.html +4 -0
- package/docs/components/progress.html +4 -0
- package/docs/components/resize.html +4 -0
- package/docs/components/shadow-component.html +4 -0
- package/docs/components/show-more.html +4 -0
- package/docs/components/slider.html +4 -0
- package/docs/components/sortable.html +4 -0
- package/docs/components/speech-to-text.html +4 -0
- package/docs/components/spinner.html +4 -0
- package/docs/components/split.html +4 -0
- package/docs/components/table.html +4 -0
- package/docs/components/tableControls.html +4 -0
- package/docs/components/tableCustomFields.html +4 -0
- package/docs/components/tableFetchRecords.html +4 -0
- package/docs/components/tableFieldSortHide.html +4 -0
- package/docs/components/tablePagination.html +4 -0
- package/docs/components/tablePlaceholder.html +4 -0
- package/docs/components/tableRecordEditing.html +4 -0
- package/docs/components/tableRecordFiltering.html +4 -0
- package/docs/components/tableRecordHiding.html +4 -0
- package/docs/components/tableRecordSearching.html +4 -0
- package/docs/components/tableRecordSelection.html +4 -0
- package/docs/components/tableRowControls.html +4 -0
- package/docs/components/tableServerSync.html +4 -0
- package/docs/components/tableSorting.html +4 -0
- package/docs/components/tabs.html +4 -0
- package/docs/components/tags.html +4 -0
- package/docs/components/text-to-speech.html +4 -0
- package/docs/components/theme-select.html +4 -0
- package/docs/components/theme-switcher.html +4 -0
- package/docs/components/time.html +4 -0
- package/docs/components/timestamp.html +4 -0
- package/docs/components/toast.html +4 -0
- package/docs/components/toggle.html +4 -0
- package/docs/components/tree.html +4 -0
- package/docs/components/voice-selector.html +4 -0
- package/docs/index.html +10 -0
- package/docs/src/components/Markdown.js +1 -0
- package/docs/src/components/Timestamp.js +1 -1
- package/docs/src/utils/formatTimestamp.js +1 -1
- package/docs/utils/context.html +4 -0
- package/docs/utils/cookie.html +4 -0
- package/docs/utils/debounce.html +4 -0
- package/docs/utils/drag.html +4 -0
- package/docs/utils/elevation.html +4 -0
- package/docs/utils/formatTimestamp.html +4 -0
- package/docs/utils/object.html +4 -0
- package/docs/utils/propConverters.html +4 -0
- package/docs/utils/sanitizeHtml.html +4 -0
- package/docs/utils/string.html +4 -0
- package/docs/utils/theme.html +4 -0
- package/docs/utils/toTitleCase.html +4 -0
- package/docs/utils/type.html +4 -0
- package/docs/utils/voice.html +4 -0
- package/docs/utils/wait.html +4 -0
- package/docs-src/components/markdown.page.html +161 -0
- package/docs-src/index.page.html +6 -0
- package/docs-src/nav.fragment.html +4 -0
- package/llms.txt +1 -0
- package/package.json +1 -1
- package/src/components/Markdown.js +125 -0
- package/src/components/Timestamp.js +3 -3
- package/src/utils/formatTimestamp.js +2 -1
- package/tests/components/Markdown.browser-test.js +292 -0
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/components/nav.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
138
138
|
href="../components/html-editor.html">HTML
|
|
139
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
141
|
+
href="../components/markdown.html"
|
|
142
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
140
143
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
144
|
href="../components/markdown-editor.html"
|
|
142
145
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -347,6 +350,7 @@
|
|
|
347
350
|
<a href="../components/filter-list.html">Filter List</a>
|
|
348
351
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
349
352
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
353
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
350
354
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
351
355
|
<a href="../components/icon.html">Icon</a>
|
|
352
356
|
<a href="../components/import.html">Import</a>
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
138
138
|
href="../components/html-editor.html">HTML
|
|
139
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
141
|
+
href="../components/markdown.html"
|
|
142
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
140
143
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
144
|
href="../components/markdown-editor.html"
|
|
142
145
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -347,6 +350,7 @@
|
|
|
347
350
|
<a href="../components/filter-list.html">Filter List</a>
|
|
348
351
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
349
352
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
353
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
350
354
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
351
355
|
<a href="../components/icon.html">Icon</a>
|
|
352
356
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
<k-filter-item filter-keywords="html editor components"><a
|
|
101
101
|
href="../components/html-editor.html">HTML
|
|
102
102
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
103
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
104
|
+
href="../components/markdown.html"
|
|
105
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
103
106
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
104
107
|
href="../components/markdown-editor.html"
|
|
105
108
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -310,6 +313,7 @@
|
|
|
310
313
|
<a href="../components/filter-list.html">Filter List</a>
|
|
311
314
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
312
315
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
316
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
313
317
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
314
318
|
<a href="../components/icon.html">Icon</a>
|
|
315
319
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
138
138
|
href="../components/html-editor.html">HTML
|
|
139
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
141
|
+
href="../components/markdown.html"
|
|
142
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
140
143
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
144
|
href="../components/markdown-editor.html"
|
|
142
145
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -347,6 +350,7 @@
|
|
|
347
350
|
<a href="../components/filter-list.html">Filter List</a>
|
|
348
351
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
349
352
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
353
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
350
354
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
351
355
|
<a href="../components/icon.html">Icon</a>
|
|
352
356
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
138
138
|
href="../components/html-editor.html">HTML
|
|
139
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
141
|
+
href="../components/markdown.html"
|
|
142
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
140
143
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
144
|
href="../components/markdown-editor.html"
|
|
142
145
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -347,6 +350,7 @@
|
|
|
347
350
|
<a href="../components/filter-list.html">Filter List</a>
|
|
348
351
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
349
352
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
353
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
350
354
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
351
355
|
<a href="../components/icon.html">Icon</a>
|
|
352
356
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
137
137
|
href="../components/html-editor.html">HTML
|
|
138
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
140
|
+
href="../components/markdown.html"
|
|
141
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
139
142
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
143
|
href="../components/markdown-editor.html"
|
|
141
144
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -346,6 +349,7 @@
|
|
|
346
349
|
<a href="../components/filter-list.html">Filter List</a>
|
|
347
350
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
348
351
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
352
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
349
353
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
350
354
|
<a href="../components/icon.html">Icon</a>
|
|
351
355
|
<a href="../components/import.html">Import</a>
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
138
138
|
href="../components/html-editor.html">HTML
|
|
139
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
141
|
+
href="../components/markdown.html"
|
|
142
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
140
143
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
144
|
href="../components/markdown-editor.html"
|
|
142
145
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -347,6 +350,7 @@
|
|
|
347
350
|
<a href="../components/filter-list.html">Filter List</a>
|
|
348
351
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
349
352
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
353
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
350
354
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
351
355
|
<a href="../components/icon.html">Icon</a>
|
|
352
356
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|