diff --git a/to-html.js b/to-html.js index b2dbce6..30828f0 100644 --- a/to-html.js +++ b/to-html.js @@ -45,9 +45,7 @@ function head(file, title, options) { }${ !options.canonical ? "" - : `` + : `` } ${title} @@ -105,8 +103,3 @@ function line( if (quote) return `
${escape(quote)}
`; return `


`; } - -function omit(key, obj) { - const { [key]: omitted, ...rest } = obj; - return rest; -}