From 8ecc8aa21bf61063a8e2d0ef29a78d4a62616d29 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Wed, 13 Jul 2011 20:51:17 -0400 Subject: 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. --- scripts/update_doc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/update_doc') 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 ]] - 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('()([^<]+)()', function(s, text, e) -- cgit v1.2.3