Markdown

Preview

Insights

0 words i
0 characters i
0 sentences i
0 paragraphs i
Flesch: β€” i
FK Grade: β€” i
Dale–Chall: β€” i
Read: β€” i
Speak: β€” i

Keywords

    Markdown syntax guide

    Quick reference for common Markdown elements supported by this app:

    • Headings: # H1 … ###### H6
    • Emphasis: *italic*, _italic_, **bold**, __bold__, ~~strikethrough~~
    • Lists: unordered - or *; ordered 1.
    • Links & images: [text](https://example.com), ![alt](image.png)
    • Code: inline `code`; fenced blocks with language ```js
    • Blockquotes: > quoted text
    • Tables: | col1 | col2 | with | --- | --- |
    • Horizontal rule: --- or ***
    • Task list: - [ ] item, - [x] done
    • Math (TeX): inline $...$; block $$...$$ (enable β€œRender Math”)
    # Heading 1
    
    > A quote
    
    - Item 1
    - Item 2
    
    ```js
    function hello(){ console.log('world'); }
    ```
    

    Advanced tips:

    • Footnotes: This needs a note.[^1] and then [^1]: Footnote text here.
    • Table alignment: many flavors support alignment using colons in the header separator.
    • Callouts/Admonitions: some renderers support special blockquotes like > [!NOTE] and > [!WARNING].
    • Syntax highlighting: use fenced code blocks with language tag, e.g. ```js, ```python.
    Text with a footnote.[^1]
    
    [^1]: Footnote text.
    
    | Left | Center | Right |
    |:-----|:------:|------:|
    | a    |   b    |     c |
    
    > [!NOTE]
    > This is a note-style callout.
    
    ```python
    def fib(n):
        a, b = 0, 1
        for _ in range(n):
            a, b = b, a + b
        return a
    ```
    
    $$
    \\begin{align}
     a^2 + b^2 &= c^2\\\\
     e^{i\\pi} + 1 &= 0
    \\end{align}
    $$