我试图从我在xml文件中的注释中生成一个格式良好的html文档。目前我有一个xml文件,用于生成xml表格的html列表。为了让我添加有关表格的评论,我手动将注释添加到输出html文件中。使用xml注释来生成格式化的html输出
我想如果可能将html代码放在xml文件中作为注释并让xslt使用注释来创建格式正确的文档。
这是注释的xml文件的一部分。这里有html新行语法,我希望xslt读取为html。我在想,必须有更好的方法来使用raw xml来创建它,但是,我不希望在xml文件中读取注释,因此不希望它作为表项。
这是我使用注释的xsl文件的一部分,但它不解释html。
所需的输出看起来是这样的手动格式化时:
ers_benchmark_defn |
---|
This table contains mapping between hierarchy nodes and their respective benchmarks. The columns should be populated as follows:- BENCHMARK
The column can be populated with either; a Calypso portfolio name, an ERS Risk Hierarchy name, or an ERS Risk Hierarchy node name. In the latter case, the column should be populated with the hierarchy node name and the hierarchy to which it belongs, separated by a percentage symbol, %.
- BENCHMARK_TYPE
If the value in the benchmark column is an ERS hierarchy or hierarchy node name, this column should be populated with the value HIERARCHY. Otherwise, when using a Calypso portfolio name, it should not be populated.
See the ERS 10.2 Release notes for further information. |
---|
这些都是完整的代码中提取,但我认为这应该是足够的人来帮助我。
谢谢!
2011-05-18
Freddie