diff options
Diffstat (limited to 'scilab/modules')
-rw-r--r-- | scilab/modules/helptools/src/java/org/scilab/modules/helptools/HTMLDocbookTagConverter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab/modules/helptools/src/java/org/scilab/modules/helptools/HTMLDocbookTagConverter.java b/scilab/modules/helptools/src/java/org/scilab/modules/helptools/HTMLDocbookTagConverter.java index 14cb5ff..9d0fb32 100644 --- a/scilab/modules/helptools/src/java/org/scilab/modules/helptools/HTMLDocbookTagConverter.java +++ b/scilab/modules/helptools/src/java/org/scilab/modules/helptools/HTMLDocbookTagConverter.java | |||
@@ -1177,7 +1177,7 @@ public class HTMLDocbookTagConverter extends DocbookTagConverter implements Temp | |||
1177 | */ | 1177 | */ |
1178 | public String handleScreen(final Map<String, String> attributes, final String contents) throws SAXException { | 1178 | public String handleScreen(final Map<String, String> attributes, final String contents) throws SAXException { |
1179 | String id = attributes.get("id"); | 1179 | String id = attributes.get("id"); |
1180 | String str = encloseContents("div", "screen", encloseContents("pre", contents)); | 1180 | String str = encloseContents("div", "screen", encloseContents("pre", contents.replace("<", "<"))); |
1181 | if (id != null) { | 1181 | if (id != null) { |
1182 | return "<a name=\"" + id + "\"></a>" + str; | 1182 | return "<a name=\"" + id + "\"></a>" + str; |
1183 | } else { | 1183 | } else { |