-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kevinramage/develop
v0.0.3 - Init markdown editor
- Loading branch information
Showing
24 changed files
with
1,933 additions
and
871 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
# Knownledga | ||
|
||
Knownledga is a tool to read and write markdown files. | ||
|
||
## Installation | ||
|
||
Install dependencies: | ||
|
||
``` | ||
npm update | ||
npm update -D | ||
npm install -g pnpm | ||
``` | ||
|
||
Download rust | ||
|
||
## Run | ||
## Run and build | ||
|
||
Run client | ||
``` | ||
pnpm tauri dev | ||
``` | ||
|
||
Build a release | ||
``` | ||
pnpm tauri build | ||
``` | ||
|
||
## Build | ||
## Compatibility | ||
|
||
pnpm tauri build | ||
[Markdown rendering compatibility](./doc/markdown.md) | ||
[Mermaid rendering compatibility](./doc/markdown.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Markdown support | ||
|
||
- [x] Paragraph | ||
- [x] Heading | ||
- [x] Alternative heading syntax | ||
- [x] Paragraph line break | ||
- [x] Bold syntax with * | ||
- [x] Bold syntax with _ | ||
- [x] Italic syntax with * | ||
- [x] Italic syntax with _ | ||
- [x] Blockquote | ||
- [ ] Blockquote Multiple paragraphe (Not compatible yet) | ||
- [ ] Nested blockquote (Not compatible yet) | ||
- [x] Ordered list | ||
- [x] Ordered sub list | ||
- [x] Nonordered list | ||
- [x] Nonordered sub list | ||
- [ ] Local images (Not compatible yet) | ||
- [ ] External images (Not compatible yet) | ||
- [x] Internal links | ||
- [x] External links | ||
- [ ] Code (Not compatible yet) | ||
- [ ] Horizontal rules (Not compatible yet) | ||
- [ ] Formatting url and mail (Not compatible yet) | ||
- [ ] Escaping character (Not compatible yet) | ||
- [ ] Html (Not compatible yet) | ||
|
||
[Source](https://www.markdownguide.org/basic-syntax/#code) | ||
-------------------- | ||
|
||
- [ ] Table (Partial not compatible with inline tokens) | ||
- [ ] Table alignment (Not compatible yet) | ||
- [x] Fences code block | ||
- [ ] Syntax highlighting (Not compatible yet) | ||
- [ ] Footnote (Not compatible yet) | ||
- [ ] Heading id (Not compatible yet) | ||
- [ ] Definition list (Not compatible yet) | ||
- [x] Strikethrough | ||
- [ ] Task list (Partial not compatible with inline tokens) | ||
- [ ] Sub task list (Not compatible yet) | ||
- [ ] Emoji (Not compatible yet) | ||
- [ ] Highlight (Not compatible yet) | ||
- [ ] Subscript (Not compatible yet) | ||
- [ ] Superscript (Not compatible yet) | ||
- [ ] Automatic URL linking (Not compatible yet) | ||
|
||
[Source](https://www.markdownguide.org/extended-syntax/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.