Skip to content

Commit b50c3a7

Browse files
Wrap handbook parts with Liquid raw tags
Remove the YAML frontmatter flag `render_with_liquid: false` and wrap each handbook file with Liquid raw blocks. For react-handbook-part1..4.md the document body is now enclosed with `{% raw %}` at the top and `{% endraw %}` at the bottom to prevent Liquid/Jekyll from processing template syntax during site build.
1 parent dfc46d7 commit b50c3a7

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

β€ŽReact Interview/react-handbook-part1.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
render_with_liquid: false
32
---
3+
{% raw %}
44

55
# πŸš€ Senior Frontend Engineer / React Developer Interview Handbook
66

@@ -1852,3 +1852,5 @@ Key metrics to watch:
18521852
---
18531853

18541854
_End of Part 1 β€” Sections 1–5_
1855+
1856+
{% endraw %}

β€ŽReact Interview/react-handbook-part2.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
render_with_liquid: false
32
---
3+
{% raw %}
44

55
# πŸš€ Senior Frontend Engineer / React Developer Interview Handbook
66

@@ -1313,3 +1313,5 @@ const { data } = useQuery({
13131313
---
13141314
13151315
_End of Part 2 β€” Sections 6–10_
1316+
1317+
{% endraw %}

β€ŽReact Interview/react-handbook-part3.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
render_with_liquid: false
32
---
3+
{% raw %}
44

55
# πŸš€ Senior Frontend Engineer / React Developer Interview Handbook
66

@@ -1462,3 +1462,5 @@ All MFEs share the same design system version. Upgrade in one place.
14621462
---
14631463
14641464
_End of Part 3 β€” Sections 11–15_
1465+
1466+
{% endraw %}

β€ŽReact Interview/react-handbook-part4.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
render_with_liquid: false
32
---
3+
{% raw %}
44

55
# πŸš€ Senior Frontend Engineer / React Developer Interview Handbook
66

@@ -1385,3 +1385,5 @@ _End of Part 4 β€” Sections 16–20_
13851385
| [react-handbook-part2.md](react-handbook-part2.md) | 6–10 | State Mgmt, Router, API, Patterns, System Design |
13861386
| [react-handbook-part3.md](react-handbook-part3.md) | 11–15 | Machine Coding, Testing, Security, Build, Micro FE |
13871387
| [react-handbook-part4.md](react-handbook-part4.md) | 16–20 | NPM, Q&A, Mental Models, Checklist, FAANG Internals |
1388+
1389+
{% endraw %}

0 commit comments

Comments
Β (0)