在 feature.xml 中为 swt 插件描述添加新行
add new line for swt plugin description in feature.xml
我正在尝试为 feature.xml 中的插件添加多行描述。我正在尝试通过在行之间插入 \n 但似乎没有 work.However 我已经看到很多带有多段描述的插件。非常感谢任何帮助。
feature.xml
中各个字段中的新行通常通过使用 NLS 支持并在 feature.properties
文件中指定文本来完成。
因此 feature.xml 中的描述将是:
<description>
%description
</description>
并在 feature.properties
description=line 1\n\
line 2\n\
last line
我正在尝试为 feature.xml 中的插件添加多行描述。我正在尝试通过在行之间插入 \n 但似乎没有 work.However 我已经看到很多带有多段描述的插件。非常感谢任何帮助。
feature.xml
中各个字段中的新行通常通过使用 NLS 支持并在 feature.properties
文件中指定文本来完成。
因此 feature.xml 中的描述将是:
<description>
%description
</description>
并在 feature.properties
description=line 1\n\
line 2\n\
last line