diff options
author | jakub <jakub@vrana.cz> | 2011-12-12 12:16:27 -0800 |
---|---|---|
committer | jakub <jakub@vrana.cz> | 2011-12-12 12:16:27 -0800 |
commit | 1be60b45347cbfce305f8a7aa416edf849019176 (patch) | |
tree | 980cc91d4e0f4fb0ceb07b7d2e8cf30c10ef0884 /src | |
parent | e7ecdbe0acb3c9d7b495f02b511919ae275b26cb (diff) | |
download | scintilla-mirror-1be60b45347cbfce305f8a7aa416edf849019176.tar.gz |
Anchors for properties documentation
Diffstat (limited to 'src')
-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"] |