aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-06-30 12:55:34 -0700
committerJeff Brown <jeffbrown@google.com>2011-11-29 13:49:17 -0800
commit590a9d61cfdbbe6cfb209c5ef3769e8ab76a6bf2 (patch)
treebadc7db6a505a004687be8cae1819fec23538aa1 /scripts
parentec62033a8a1027ec93b41cd48bc69856c45b28af (diff)
downloadsource.android.com-590a9d61cfdbbe6cfb209c5ef3769e8ab76a6bf2.tar.gz
Add section on input devices.
Change-Id: Ib9c4909881df505b11537c28bd08182933a5565a
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.py b/scripts/build.py
index 8188f511..1325a38f 100755
--- a/scripts/build.py
+++ b/scripts/build.py
@@ -9,7 +9,7 @@ import subprocess
# call markdown as a subprocess, and capture the output
def markdown(raw_file):
- extensions = '-x tables' + ' ' + '-x "toc(title=In This Document)"'
+ extensions = '-x tables -x "toc(title=In This Document)" -x def_list'
command = 'markdown' + ' ' + extensions + ' ' + raw_file
p = subprocess.Popen(command, stdout = subprocess.PIPE, shell = True)
return p.communicate()[0]