File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
utils/remote-content/parsers Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ content/docs/acps/226-dynamic-minimum-block-times.mdx
168168content /docs /acps /23-p-chain-native-transfers.mdx
169169content /docs /acps /236-continuous-staking.mdx
170170content /docs /acps /24-shanghai-eips.mdx
171+ content /docs /acps /247-delegation-multiplier-increase-maximum-validator-weight-reduction.mdx
171172content /docs /acps /25-vm-application-errors.mdx
172173content /docs /acps /30-avalanche-warp-x-evm.mdx
173174content /docs /acps /31-enable-subnet-ownership-transfer.mdx
Original file line number Diff line number Diff line change 77 " ---Overview---" ,
88 " index" ,
99 " ---Standards Track ACPs---" ,
10+ " 247-delegation-multiplier-increase-maximum-validator-weight-reduction" ,
1011 " 236-continuous-staking" ,
1112 " 226-dynamic-minimum-block-times" ,
1213 " 224-dynamic-gas-limit-in-subnet-evm" ,
Original file line number Diff line number Diff line change @@ -317,6 +317,8 @@ export const fixUnicodeMathSymbols: TransformFunction = (content) => {
317317 // Replace ASCII comparison operators that can cause MDX issues (but not HTML tags)
318318 . replace ( / ( [ ^ < > = ! \w / ] ) < = / g, '$1<=' )
319319 . replace ( / ( [ ^ < > = ! \w / ] ) > = / g, '$1>=' )
320+ // Escape < followed by a digit (like <1k) which MDX would try to parse as JSX tag
321+ . replace ( / < ( \d ) / g, '<$1' )
320322 // Fix table formatting issues with backslashes and asterisks
321323 . replace ( / \\ \* / g, '\\\\*' )
322324 // Replace other common mathematical symbols that might cause MDX issues
You can’t perform that action at this time.
0 commit comments