- Add `wasm`, `wasm-clean`, and `install-emscripten` phony targets to Makefile for WebAssembly cross-compilation - Insert `WREN_PROFILE_ENTER`/`WREN_PROFILE_EXIT` macros in `wren_vm.h` and `wren_vm.c` to support optional runtime profiling via `WREN_PROFILE_ENABLED` - Create `example/os_demo.wren` demonstrating Platform, Process, and conditional exit usage - Update `example/regex_demo.wren` to import `Match` and exercise Match object properties, groups, and `matchAll` - Remove static HTML manual pages (`base64.html`, `dns.html`, `json.html`) and replace with structured `manual_src/` directory containing Jinja2 templates, YAML metadata, and content pages - Expand `README.md` with build targets table, manual building instructions, source layout, and guide for adding new module documentation
27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
{# retoor <retoor@molodetz.nl> #}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'includes/head_meta.html' %}
|
|
<title>{% block title %}{{ page_title }}{% endblock %} - {{ site.name }} Manual</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto+Slab:wght@400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ static_prefix }}css/style.css">
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<a href="#main-content" class="skip-link">Skip to main content</a>
|
|
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="sidebar-nav">Menu</button>
|
|
<div class="container">
|
|
{% include 'includes/sidebar.html' %}
|
|
<main class="content" id="main-content">
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
<script src="{{ static_prefix }}js/main.js"></script>
|
|
<script>window.SEARCH_INDEX = {{ search_index_json|safe }};</script>
|
|
<script src="{{ static_prefix }}js/search.js"></script>
|
|
</body>
|
|
</html>
|