Skip to content

Commit a622835

Browse files
committed
fix(blog): use 4-backtick fence for nested markdown block in atlas.llm
The --dump example block shows nested triple backticks (a markdown fence containing go fences), which broke Markdown parsing — the inner triple-backticks were ending the outer fence early. Bump the outer fence to four backticks so the inner triple-backticks stay literal.
1 parent db20715 commit a622835

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

public/posts/atlas-llm-deep-dive.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ isn't the right answer — sometimes you want to paste your project into
758758
Claude or Gemini for a deep architectural question. The mode flattens
759759
the directory into a single Markdown file:
760760

761-
```markdown
761+
````markdown
762762
## main.go
763763
```go
764764
package main
@@ -769,7 +769,7 @@ package main
769769
```go
770770
// ...
771771
```
772-
```
772+
````
773773

774774
With `--with-summaries`, each block is prepended by an AI summary
775775
delivered as a Markdown blockquote:

0 commit comments

Comments
 (0)