mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 23:37:19 +00:00
Add in support for markdown files
This commit is contained in:
parent
0644cb316d
commit
129cf0bf62
6 changed files with 52 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 |
|
||||
+---------------+---------------+--------------------+
|
|
@ -0,0 +1,9 @@
|
|||
\documentclass{article}
|
||||
\usepackage{longtable}
|
||||
\usepackage{booktabs, multicol, multirow}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\input{chapters/chapter1}
|
||||
|
||||
\end{document}
|
Binary file not shown.
|
@ -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 |
|
||||
+---------------+---------------+--------------------+
|
Binary file not shown.
Loading…
Reference in a new issue