Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/www/docs/nuemark-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Nuemark extends standard Markdown with additional formatting options:
The bullet character `•` provides non-semantic bold:

```md
•bold text• → <b>bold text</b>
\•bold text\• → <b>bold text</b>
```


Expand Down
4 changes: 2 additions & 2 deletions packages/www/docs/syntax-highlighting.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Use bullet markers to highlight specific parts:
````md
```javascript
const config = {
•name: "My App"•,
\•name: "My App"\•,
version: "1.0.0"
}
```
Expand All @@ -99,7 +99,7 @@ Double bullets mark errors:

````md
```javascript
const data = •undefned• // typo
const data = \•\•undefned\•\• // typo
```
````

Expand Down