personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Escape Jinja2 syntax in docs for Jekyll compatibility

Use HTML entities to escape {{ and {% in code examples so GitHub Pages
Jekyll build doesn't interpret them as Liquid tags while still rendering
correctly in all Markdown viewers.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+4 -4
+2 -2
docs/APPS.md
··· 95 95 **Note:** The server-side `selected_facet` is also available client-side as `window.selectedFacet` (see JavaScript APIs below). 96 96 97 97 **Vendor Libraries:** 98 - - Use `{{ vendor_lib('marked') }}` for markdown rendering 98 + - Use `&#123;&#123; vendor_lib('marked') &#125;&#125;` for markdown rendering 99 99 - See [VENDOR.md](VENDOR.md) for available libraries 100 100 101 101 **Reference implementations:** ··· 160 160 For apps with day-based navigation, include the shared date navigator: 161 161 162 162 ```html 163 - {% include 'date_nav.html' %} 163 + &#123;% include 'date_nav.html' %&#125; 164 164 ``` 165 165 166 166 This provides a unified `← Date →` control with:
+2 -2
docs/VENDOR.md
··· 25 25 **Usage in App Templates**: 26 26 ```html 27 27 <!-- Using helper function (recommended) --> 28 - <script src="{{ vendor_lib('marked') }}"></script> 28 + <script src="&#123;&#123; vendor_lib('marked') &#125;&#125;"></script> 29 29 30 30 <!-- Using explicit path --> 31 - <script src="{{ url_for('static', filename='vendor/marked/marked.min.js') }}"></script> 31 + <script src="&#123;&#123; url_for('static', filename='vendor/marked/marked.min.js') &#125;&#125;"></script> 32 32 ``` 33 33 34 34 **Example**: