Skip to content

Commit 73239c4

Browse files
87xiedimaMachina
andauthoredAug 21, 2024··
[v3] specify default language for code blocks (#3108)
[v3] specify the default language as plaintext for code blocks Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com>
1 parent 150184b commit 73239c4

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
 

‎.changeset/chilly-shoes-marry.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'nextra-theme-blog': patch
3+
'nextra-theme-docs': patch
4+
'nextra': patch
5+
---
6+
7+
To ensure consistent horizontal padding, set the default language as plaintext for code blocks. This prevents any loss of formatting for code blocks without a specified language.

‎examples/blog/pages/posts/code-blocks.mdx

+10
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@ object Hello {
4242
hello world
4343
```
4444

45+
## Test with code block default language
46+
47+
```
48+
const links = [
49+
{ href: '/settings', label: 'Settings' },
50+
{ href: '/support', label: 'Support' },
51+
{ href: '/license', label: 'License' },
52+
]
53+
```
54+
4555
## Test link in code
4656

4757
Link to [`google`](https://google.com)

‎packages/nextra/src/server/rehype-plugins/rehype.ts

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ export const DEFAULT_REHYPE_PRETTY_CODE_OPTIONS: RehypePrettyCodeOptions = {
2727
light: 'github-light',
2828
dark: 'github-dark'
2929
},
30+
defaultLang: {
31+
block: 'plaintext'
32+
},
3033
getHighlighter(opts) {
3134
return getHighlighter({
3235
...opts,

0 commit comments

Comments
 (0)
Please sign in to comment.