Skip to content

Commit 86733be

Browse files
committed
release: v2.9.4 planned onboarding copy + mobile editor type
Paragraph default sample per product plan; 14px CodeMirror on narrow screens.
1 parent 2686327 commit 86733be

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2.9.4
4+
5+
- feat(copy): default sample uses planned onboarding paragraph—GFM, Mermaid fences, export path
6+
- style(editor): slightly smaller monospace on screens ≤768px for comfortable wrapping
7+
38
## 2.9.3
49

510
- refactor(copy): clearer default onboarding—short intro plus bullet list (no cramped one-liners)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "md2pdf",
3-
"version": "2.9.3",
3+
"version": "2.9.4",
44
"description": "Offline Markdown to PDF in the browser. No server, no uploads.",
55
"keywords": [
66
"markdown",

src/App/Components/Markdown/Editor/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ export default styled(Editor)`
1818
@media (max-width: 768px) {
1919
width: 100% !important;
2020
flex-shrink: 1;
21+
22+
.cm-scroller {
23+
font-size: 14px;
24+
}
2125
}
2226
`;
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
export const initialText = `# Hello World!
22
3-
**Markdown To PDF** is an offline Markdown editor with a live preview. Your content stays in the browser.
4-
5-
- **GitHub-flavored Markdown** — tables, task lists, and highlighted fenced code blocks
6-
- **Mermaid diagrams** — use a fenced block with the \`mermaid\` language tag
7-
- **Import** — drop a \`.md\` file or paste notes here
8-
- **Export** — **Export to .pdf** uses your system's print dialog (save as PDF)
9-
3+
**Markdown To PDF** is an offline Markdown editor and preview in your browser—nothing is uploaded or sent to a server. It supports **GitHub-flavored Markdown**, syntax-highlighted fenced code blocks, **Mermaid** diagrams (\`\`\`mermaid … \`\`\`), tables, task lists, and more. Drag in a \`.md\` file or type here, then use **Export to .pdf** to print or save a PDF via your system dialog.
104
`;

0 commit comments

Comments
 (0)