Skip to content

Commit c706c53

Browse files
fix: rename to Smart continuation and use fern commands example
Co-Authored-By: Sarah Bawabe <[email protected]>
1 parent 1fd954b commit c706c53

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

fern/products/docs/pages/changelog/2026-01-30.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ The `hideLinePrefixes` prop differs from `showLineNumbers={false}` in that it al
1010

1111
Learn more about [code block options](/learn/docs/writing-content/components/code-blocks#hide-line-prefixes).
1212

13-
## Improved command continuation indicators
13+
## Smart continuation in code blocks
1414

15-
Bash and terminal code blocks now display `>` instead of `$` for continuation lines when a command spans multiple lines using `\`. This visual distinction makes it easier to identify multi-line commands.
15+
Bash and terminal code blocks now intelligently display `$` for new commands and `>` for continuation lines when a command spans multiple lines using `\`. This makes it easier to distinguish between separate commands and multi-line commands in the same code block.
1616

1717
```bash
18-
curl -X POST https://api.plantstore.com/v1/plants \
19-
-H "Authorization: Bearer $API_KEY" \
20-
-H "Content-Type: application/json" \
21-
-d '{"name": "Monstera"}'
18+
fern init
19+
fern generate --group external \
20+
--log-level debug \
21+
--version 1.0.0
22+
fern check
23+
fern docs dev
2224
```

0 commit comments

Comments
 (0)