Current problem
Hard to handle a combination between paragraphs and lines.
Thought Flow
- Markdown produces a paragraph at first line or with double line returns(\n\n)
- I want to deliver the same input experience with general pure editor
- Only this editor show them preview of styles what MD will produces
- Q) Should I show paragraphs(p tag) as preview?
- Showing P tag isn't bad. But it isn't right to change editing experience by inserting p tag on Enter input.
Then, my dicisions are
- "Keeping the same experience of editing" is the first rule.
- So, stop inserting Paragragh tag (p). just handle lines by default.
Current problem
Hard to handle a combination between paragraphs and lines.
Thought Flow
Then, my dicisions are