Notes

© 2025 Luka Uzel — Open sourced under the MIT License.

loCode V1.0.0 built with ❤️ using Symfony, Alpine.js, Bootstrap and Docker

Fri. 2 January 2026 02:25

Help

This is simple Markdown note making app.

You can create, edit and save your notes in Markdown format.

Headings


    # Heading 1
    ## Heading 2
    ### Heading 3
    #### Heading 4
    ##### Heading 5
    ###### Heading 6
    

Bold & Italics


    **Bold** or __Bold__
    *Italic* or _Italic_
    ~~Strikethrough~~
    

Lists

Unordered


    - Item 1
    - Item 2
        - Subitem 1
        - Subitem 2
    

Ordered


    1. Item 1
    2. Item 2
        1. Subitem 1
        2. Subitem 2
    

Links


    [OpenAI](https://openai.com)
    

Images


    ![Alt text](https://via.placeholder.com/150 "Image Title")
    

Blockquotes


    > This is a blockquote.
    

Code

Inline Code


    Use `` tags for inline code.
    

Code Blocks


    ```
    function helloWorld() {
        console.log("Hello, world!");
    }
    ```
    

Tables


    | Column 1 | Column 2 | Column 3 |
    |----------|----------|----------|
    | Data 1   | Data 2   | Data 3   |
    | Data 4   | Data 5   | Data 6   |
    

Horizontal Line


    ---