Drop a .url file containing a single URL to serve remote Markdown
content as a local page. The remote content is fetched, processed
through the full pipeline, and cached locally.
Create a file with a .url extension containing the remote URL:
https://raw.githubusercontent.com/owner/repo/main/README.md
The file contains only the URL, trimmed of whitespace.
Remote pages are cached as .html files, same as local pages. The
cache TTL is 3600 seconds (1 hour) by default. The page is re-fetched
when the cache expires.
If a fetch fails, the stale cache is served if available. If no cache
exists and the fetch fails, an error page is rendered with the class
errorbox.
The fetched content is processed through the full pipeline: fenced divs, includes, code blocks, oEmbed, Markdown conversion, TT variable resolution, and view template wrapping. The remote content can use front matter for title, subtitle, and other metadata.
$ cat public_html/changelog.url
https://raw.githubusercontent.com/owner/repo/main/CHANGELOG.md
Visiting /changelog fetches and renders the remote Markdown file.
http:// and https:// URLs are accepted.url file itself is never served - only the rendered content.url files support raw: true in the fetched content's front
matter for layout-less outputlazysite/1.0.url files are checked after .md files - if both exist for the
same path, the .md file takes priority