Welcome to this notes application, you can add notes in Markdown format and filter them in a few different ways.
Login to try it out!
At the top bar you can search, any notes or titles containing the text will be shown for the 4 months currently selected.
The clear button will clear the current search and the current calendar selection if any.
At the top you can select All, Todo or Done notes. Clicking the checkbox next to a note title will mark it as done. This is just to hide old notes from the view.
In the calendar on the left (not visible on small screens) you can select a date and only the notes on that date will be shown. Click it again to see all notes again.
The notes can be formatted using Markdown syntax, after login this welcome page will be added as your first note so you can view the source.
Text can be formatted with bold, italic, bold and italic, strikethrough, and code.
Markdown supports escaping characters with a backslash \, for example to display a literal asterisk *.
You can create code blocks by indenting lines with two (or more) spaces or inline using the backtick character `.
Some code Block code
Also code blocks are supported:
// java code public class Example { public static void main(String[] args) { System.out.println("Hello, World!"); } }
Image and documents can be dragged and dropped directly into the note. An image or link will be added to the note.
Mermaid graphs are supported. For example:
graph TD A[Start] --> B{Decision}; B -- Yes --> C[Continue]; B -- No --> D[End];
Tables are supported in github flavoured Markdown format.
Or in a csv format within a code block.