ArodArod - Webserver for Bushel content
Arod is an httpz-based webserver that serves Bushel content (notes, papers, projects, ideas, videos) as a website.
Config - TOML configurationCtx - Context record (replaces global state)Cache - TTL cache for rendered HTMLHandlers - Route handlersmodule Config : sig ... endTOML-based configuration for the webserver.
module Ctx : sig ... endContext record holding entries and configuration.
module Cache : sig ... endTTL-based cache for rendered HTML responses.
module Md : sig ... endMarkdown rendering with Bushel extensions.
module Icons : sig ... endSVG icon helpers (Tabler Icons).
module Text : sig ... endPlaintext extraction from HTML.
module Feed : sig ... endAtom feed generation.
module Jsonfeed : sig ... endJSON feed generation.
module Jsonld : sig ... endSchema.org JSON-LD structured data generation.
module Route = Httpz_server.RouteHTTP routing (re-exported from httpz).