# LiveMD field note
The editor keeps Markdown as the source while the page reads like composed text.
> Drafting should feel quiet. Markup can stay available without shouting over the prose.
```ts
type Note = {
title: string;
done: boolean;
};
```
## Inline rhythm
Use _emphasis_, **strong text**, ~~removed words~~, `inline code`, and [project links](https://viteplus.dev/) in the same writing flow.
- [x] Render Markdown blocks in place
- [x] Keep Tree-sitter parsing active
- [ ] Compare more LiveMD behaviors