Skip to content

Commit 09bce30

Browse files
AlexKirkouskiclaude
authored andcommitted
Escape the bare <- in a heading: MDX reads it as JSX and the build dies
`processPlatformCommit` #12929 failed on the push: Docusaurus compiles the Markdown as MDX, and `## State changes (<-, NEW, DELETE)` gives "Unexpected character `-` (U+002D) before name" from micromark-extension-mdx-jsx — a `<` followed by anything that is not a valid tag name aborts the whole site build. Backticks make it literal. Scanned both branches for the same shape outside code fences: these two headings were the only real ones; the other two hits are inside a backtick span that wraps to the next line. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012YrYJtJ6hR2qJsk7FxjTjW
1 parent 4833d20 commit 09bce30

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/brief/en/Brief_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: "/Brief_actions"
33
title: 'Brief: actions'
44
---
55

6-
## State changes (<-, NEW, DELETE)
6+
## State changes (`<-`, NEW, DELETE)
77

88
The [`CHANGE` operator](../language/CHANGE_operator.md) writes a value into a changeable property, the [`NEW` operator](../language/NEW_operator.md) adds an [object](../paradigm/New_object_NEW.md) of a concrete class, and the [`DELETE`](../language/DELETE_operator.md) and [`CHANGECLASS`](../language/CHANGECLASS_operator.md) operators delete an object or move it to another class:
99

docs/brief/ru/Brief_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: "/Brief_actions"
33
title: 'Brief: действия'
44
---
55

6-
## Изменение состояния (<-, NEW, DELETE)
6+
## Изменение состояния (`<-`, NEW, DELETE)
77

88
[Оператор `CHANGE`](../language/CHANGE_operator.md) пишет значение в изменяемое свойство, [оператор `NEW`](../language/NEW_operator.md) добавляет [объект](../paradigm/New_object_NEW.md) конкретного класса, операторы [`DELETE`](../language/DELETE_operator.md) и [`CHANGECLASS`](../language/CHANGECLASS_operator.md) удаляют объект или переводят его в другой класс:
99

0 commit comments

Comments
 (0)