diff options
author | Unknown <jakub@vrana.cz> | 2011-12-12 12:16:27 -0800 |
---|---|---|
committer | Unknown <jakub@vrana.cz> | 2011-12-12 12:16:27 -0800 |
commit | 110061a66f83370dec4b9bfafcd6202a4256c2e0 (patch) | |
tree | 808c3b2403f8c1948694f436d11fece20bc9b803 | |
parent | 23978c867efd8625a9fd0924e1cff09a56884c25 (diff) | |
download | scintilla-mirror-110061a66f83370dec4b9bfafcd6202a4256c2e0.tar.gz |
Anchors for properties documentation
-rwxr-xr-x | src/LexGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexGen.py b/src/LexGen.py index 3081f7896..a4143650b 100755 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -277,8 +277,8 @@ def RegenerateAll(): sortListInsensitive(documentProperties) propertiesHTML = [] for k in documentProperties: - propertiesHTML.append("\t<tr>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" % - (k, propertyDocuments[k])) + propertiesHTML.append("\t<tr id='property-%s'>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" % + (k, k, propertyDocuments[k])) # Find all the SciTE properties files otherProps = ["abbrev.properties", "Embedded.properties", "SciTEGlobal.properties", "SciTE.properties"] |