taniarascia / takenote

📝 ‎ A web-based notes app for developers.

Home Page:https://takenote.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Preview rendered html in notes

Hussain-7 opened this issue · comments

Todo's:

  • Just like in github preview we should be able to write markdown in notes and view it.
  • Using tags used in markdown.
  • A button can be created that can preview the current note's rendered html.

For enhacement of marketup we can make use of mermaid, which allows us to write diagrams as code.

Mermaid

An example of such diagrams is such as:

flowchart TD
    A[Start] --> B{Is it?}
    B -- Yes --> C[OK]
    C --> D[Rethink]
    D --> B
    B -- No ----> E[End]