在 XSL 中创建母版页模板以使用 Apache FOP 进行渲染
我需要所有渲染的页面都符合特定的模板。
所以我想用 XSL 创建一个母版页模板。最初我以为我应该使用
流程图,但是 FOP (XSL 1.0) 不支持流程图。请建议一种
替代方案来为我的输出文件创建母版页模板。
问候
I need all my rendered pages conform to a specific template.
So I want to create a master page template in XSL. Initially i thought i shall make use of
flow-maps but however flowmaps are not supported by FOP (XSL 1.0). Kindly suggest an
alternative to create a master page template for my output files.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 fo 文件进行预处理怎么样?
因此,您已将主模板存储在文件中。然后您的 fo 文件和自定义页面母版包含一个占位符,例如 $insertmasterhere$。
预处理将在所有自定义页面母版中插入母版模板。您可以使用 java 和字符串替换函数来做到这一点。
问候语
约翰内斯·佩莱特
what about implementing a preprocessing of the fo-files?
So you have your master-template stored in a file. And then you have your fo-files with your custom page-masters containg a placeholder like $insertmasterhere$.
The preprocessing will insert the master-template in all custom page-masters. You could do it with java and String replace functions.
Greetings
Johannes Perlet