paths := import("paths") htmExt := func(c){ if c.is_compo { return } c.pp.print(``) } exts := { ".htm": htmExt, ".html": htmExt } export func(c){ ext := c.fext cl := exts[ext] if !is_undefined(cl) { cl(c) } }