This unnamed markdown editor is a minimal web-based markdown editor with fast preview through WebAssembly.
Markdown is a lightweight markup language for creating formatted text using a plain-text editor. John Gruber and Aaron Swartz created Markdown in 2004 as a markup language that is readable in its raw form:
The overriding design goal for Markdown's formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions.
To learn the Markdown syntax see the Github's basic writing and formatting syntax
It uses a number of open source projects to work properly:
First
Second
...
Last
Borrowed from Tables generator
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |
def fibonacci(n):
if n < 2:
return n
return fibonacci(n - 1) + fibonacci(n - 2)
public static ulong Fibonacci(uint n) {
return (n < 2)? n : Fibonacci(n - 1) + Fibonacci(n - 2);
}