aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-07-13 20:51:17 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-07-13 20:51:17 -0400
commit8ecc8aa21bf61063a8e2d0ef29a78d4a62616d29 (patch)
treeffe7a2317ddb80c558f28039a3120c8a3876afaa /scripts
parent57101e2742f9385602c367fc054363c1e52e33a2 (diff)
Refactored key commands and added menu accelerators.
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update_doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/update_doc b/scripts/update_doc
index ab8dbf67..18b472af 100755
--- a/scripts/update_doc
+++ b/scripts/update_doc
@@ -53,7 +53,7 @@ if luadoc then
f = io.open('tmp', 'w')
f:write(markdown)
f:close()
- f = io.popen('perl ../doc/Markdown.pl tmp')
+ f = io.popen('perl ../doc/MultiMarkdown.pl tmp')
markdown = f:read('*all')
f:close()
os.execute('rm tmp')
@@ -112,10 +112,10 @@ if manual then
</html>
]]
- local sidebar_md = io.popen('../doc/Markdown.pl ../doc/sidebar.md')
+ local sidebar_md = io.popen('../doc/MultiMarkdown.pl ../doc/sidebar.md')
html = html:gsub('%%sidebar%%', sidebar_md:read('*all'))
sidebar_md:close()
- local content_md = io.popen('../doc/Markdown.pl '..mdfile)
+ local content_md = io.popen('../doc/MultiMarkdown.pl '..mdfile)
local md = content_md:read('*all'):gsub('%%', '%%%%')
md = md:gsub('(<h%d>)([^<]+)(</h%d>)',
function(s, text, e)