Add in support for markdown files

This commit is contained in:
James Allen 2014-04-04 09:56:20 -04:00
parent 0644cb316d
commit 129cf0bf62
6 changed files with 52 additions and 3 deletions

View file

@ -12,9 +12,9 @@ module.exports = LatexRunner =
logger.log directory: directory, compiler: compiler, timeout: timeout, mainFile: mainFile, "starting compile"
# We want to run latexmk on the tex file which we it will automatically
# generate from the Rtex file.
mainFile = mainFile.replace(/\.Rtex$/, ".tex")
# We want to run latexmk on the tex file which we will automatically
# generate from the Rtex/Rmd/md file.
mainFile = mainFile.replace(/\.(Rtex|md|Rmd)$/, ".tex")
if compiler == "pdflatex"
command = LatexRunner._pdflatexCommand mainFile

View file

@ -0,0 +1,17 @@
Section Title
-------------
* List item one
* List item two
: Sample grid table.
+---------------+---------------+--------------------+
| Fruit | Price | Advantages |
+===============+===============+====================+
| Bananas | $1.34 | - built-in wrapper |
| | | - bright color |
+---------------+---------------+--------------------+
| Oranges | $2.10 | - cures scurvy |
| | | - tasty |
+---------------+---------------+--------------------+

View file

@ -0,0 +1,9 @@
\documentclass{article}
\usepackage{longtable}
\usepackage{booktabs, multicol, multirow}
\begin{document}
\input{chapters/chapter1}
\end{document}

View file

@ -0,0 +1,23 @@
% Title
% Author
% Date
Chapter title
=============
Section Title
-------------
Hello world. Have a nice table:
: Sample grid table.
+---------------+---------------+--------------------+
| Fruit | Price | Advantages |
+===============+===============+====================+
| Bananas | $1.34 | - built-in wrapper |
| | | - bright color |
+---------------+---------------+--------------------+
| Oranges | $2.10 | - cures scurvy |
| | | - tasty |
+---------------+---------------+--------------------+