Module

x/fresh/www/routes/gfm.css.ts

The next-gen web framework.
Extremely Popular
Go to Latest
File
import { Handlers } from "$fresh/server.ts";import { gfm } from "../utils/markdown.ts";
// TODO(lucacasonato): hash the file and use the hash as the filename, and serve// with high-cacheability headers.
const CSS = `${gfm.CSS}
ol.nested { counter-reset: item;}
ol.nested li { display: block;}
ol.nested li:before { font-feature-settings: "kern" 1, "tnum" 1; -webkit-font-feature-settings: "kern" 1, "tnum" 1; -ms-font-feature-settings: "kern" 1, "tnum" 1; -moz-font-feature-settings: "kern" 1, "tnum" 1; content: counters(item, ".") ". "; counter-increment: item;}
.markdown-body ul { list-style: disc;}
.markdown-body ol { list-style: numeric;}
.toggle:checked + .toggled { display: block;}`;
export const handler: Handlers = { GET: () => { return new Response(CSS, { headers: { "content-type": "text/css", "cache-control": "public, max-age=31536000, immutable", }, }); },};