HTML 和 XSLT 转换

发布于 2024-11-30 00:49:51 字数 77 浏览 0 评论 0原文

我有一个简单的问题,

我可以使用 XSLT 将 HTML 转换为其他 HTML。

如果可以的话我应该怎么做?

I have simple question,

Can I use XSLT to transform HTML to other HTML.

If it's possible, how i should do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

源来凯始玺欢你 2024-12-07 00:49:51

如果您的输入 HTML 是格式良好的 XML,那么您可以使用 XSLT 将输入 HTML 转换为任何文本格式。

If your input HTML is well-formed XML, then you can use XSLT to transform your input HTML in any text format.

甜宝宝 2024-12-07 00:49:51

TSaxon

TSaxon 是 Michael Kay 的 Saxon 的一个小但方便的重新包装
6.5.5 XSLT 1.0 处理器使其能够理解 HTML 和 XML
输入。 TSaxon 的 saxon.jar 版本是
撒克逊人的。唯一改变的源代码是
com.icl.saxon.StyleSheet.java

你可以像这样调用它:

java -jar saxon.jar -H html-doc style-doc

所有其他选项与 Saxon 中的相同。

如果您更喜欢使用支持 XSLT 2.0 的更高版本的 Saxon
和 XQuery,您可以使用标准 Saxon 选项:

-x org.ccil.cowan.tagsoup.Parser

确保 TagSoup 位于您的 Java 类路径中。

TSaxon

TSaxon is a minor but convenient repackaging of Michael Kay's Saxon
6.5.5 XSLT 1.0 processor to make it understand HTML as well as XML
input. TSaxon's version of saxon.jar is a drop-in replacement for
Saxon's. The only changed source code is
com.icl.saxon.StyleSheet.java

You can invoke it like this:

java -jar saxon.jar -H html-doc style-doc

All other options are as in Saxon.

If you prefer using a later version of Saxon that supports XSLT 2.0
and XQuery, you can use the standard Saxon option:

-x org.ccil.cowan.tagsoup.Parser

making sure that TagSoup is on your Java classpath.

御弟哥哥 2024-12-07 00:49:51

你可以尝试 TagSoup (http://vrici.lojban.org/~cowan/XML /tagsoup/]1)对于混乱的 HTML 并将您的 XSLT 插入其中。

You could try TagSoup (http://vrici.lojban.org/~cowan/XML/tagsoup/]1) for messy HTML and plug your XSLT into that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文