aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjakub <jakub@vrana.cz>2011-12-12 12:16:27 -0800
committerjakub <jakub@vrana.cz>2011-12-12 12:16:27 -0800
commit1be60b45347cbfce305f8a7aa416edf849019176 (patch)
tree980cc91d4e0f4fb0ceb07b7d2e8cf30c10ef0884
parente7ecdbe0acb3c9d7b495f02b511919ae275b26cb (diff)
downloadscintilla-mirror-1be60b45347cbfce305f8a7aa416edf849019176.tar.gz
Anchors for properties documentation
-rwxr-xr-xsrc/LexGen.py4
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"]