diff options
Diffstat (limited to 'vhosts/blog/nuldoc-src/renderers')
| -rw-r--r-- | vhosts/blog/nuldoc-src/renderers/html.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vhosts/blog/nuldoc-src/renderers/html.ts b/vhosts/blog/nuldoc-src/renderers/html.ts index d3cd9893..df211000 100644 --- a/vhosts/blog/nuldoc-src/renderers/html.ts +++ b/vhosts/blog/nuldoc-src/renderers/html.ts @@ -245,6 +245,12 @@ function getElementAttributes(e: Element): [string, string][] { if (a[0] === "name" && b[0] === "content") { return -1; } + if (a[0] === "content" && b[0] === "property") { + return 1; + } + if (a[0] === "property" && b[0] === "content") { + return -1; + } } if (e.name === "link") { if (a[0] === "href" && b[0] === "rel") { |
