Mercurial > addons > firefox-addons > feed-preview
comparison web_resources/xhtml-to-html.xsl @ 6:5d7c13e998e9
Create feed previews using a stream filter
Instead of replacing the feed document with an XHTML preview from a content
script after it has already been rendered, create an XHTML preview using a
stream filter before it is passed into the rendering engine and use an XSL
style sheet to convert it to HTML. This has two advantages, firstly it
results in an HTMLDocument with the full HTML DOM available and secondly it
avoids rendering the document twice.
Refactor the feed preview creation and split parsing and rendering into
seperate modules.
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Thu, 08 Nov 2018 16:30:34 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
5:341a0f4b7ce0 | 6:5d7c13e998e9 |
---|---|
1 <?xml version="1.0" encoding="UTF-8"?> | |
2 <!-- | |
3 Copyright (C) 2018 Guido Berhoerster <guido+feed-preview@berhoerster.name> | |
4 | |
5 This Source Code Form is subject to the terms of the Mozilla Public | |
6 License, v. 2.0. If a copy of the MPL was not distributed with this | |
7 file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
8 --> | |
9 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
10 <xsl:output method="html" doctype-system="about:legacy-compat" | |
11 encoding="UTF-8"/> | |
12 <xsl:template match="@*|node()"> | |
13 <xsl:copy> | |
14 <xsl:apply-templates select="@*|node()"/> | |
15 </xsl:copy> | |
16 </xsl:template> | |
17 </xsl:stylesheet> |