This is an obsidian note, it can link to other notes via wikilinks (see: Configuration is bloat and It handles subdirectories)
We can do code highlighting
import foo from bar
def baz():
bar.qux()
We can handle inline and display math
Be careful! inline double dollars $$foo$$
render as inline, see issue 13. If you forget you'll receive a warning
Images work fine
Javascript code annotated with run
will be executed, and it's results pasted in. This
```js run
import fs from "fs-extra";
const files = await fs.readdir(".");
const listBody = files.map(f => `<li>${f}</li>`).join("\n");
export const markdown = `Files:\n<ul>${listBody}</ul>`;
```
Becomes this
Files: