about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/etc/rustdoc.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/etc/rustdoc.py b/src/etc/rustdoc.py
deleted file mode 100644
index d5189a19e0f..00000000000
--- a/src/etc/rustdoc.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# A little helper script for passing rustdoc output through markdown
-#  and pandoc
-
-import sys, os, commands;
-
-if len(sys.argv) < 2:
-    print("Please provide an input crate")
-    sys.exit(1)
-
-crate = sys.argv[1]
-
-status, output = commands.getstatusoutput("rustdoc " + crate)
-
-basename = os.path.splitext(os.path.basename(crate))[0]
-
-markdownfile = basename + ".md"
-
-f = open(markdownfile, 'w')
-f.write(output)
-f.close()
-
-status, output = commands.getstatusoutput("markdown " + markdownfile)
-
-htmlfile = basename + ".md.html"
-
-f = open(htmlfile, 'w')
-f.write(output)
-f.close()
-
-pdcmd = "pandoc --standalone --toc --section-divs --number-sections \
-         --from=markdown --to=html --css=rust.css \
-         --output=" + basename + ".pd.html " + markdownfile
-
-os.system(pdcmd)