Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

maruku(1) [debian man page]

MARUKU(1)						      General Commands Manual							 MARUKU(1)

NAME
maruku - converts markdown files to various output SYNOPSIS
maruku [options] [file1.md [file2.md ...]] DESCRIPTION
maruku is a markdown interpreter: it accepts files written in the markdown language and transforms them into HTML, TeX of PDF (using pdfla- tex). If no file is given on the command-line, maruku acts as a filter and converts standard input to standard output. OPTIONS
-v, --[no-]verbose Run verbosely -u, --[no-]unsafe Use unsafe features -b Break on error -i, --math-images ENGINE Uses ENGINE to render TeX to PNG. -m, --math-engine ENGINE Uses ENGINE to render MathML -o, --output FILE Output filename --pdf Creates PDF output using pdflatex. Please see the NOTE below. --s5 Write S5 slideshow --html Write HTML output. --html-frag Write the contents of the BODY. --tex Write LaTeX --inspect Shows the parsing result --version Show version SEE ALSO
marutex(1) pdflatex(1). NOTE
An important note for debian users: to prevent a lightweight library such as libmaruku-ruby to pull in heavy dependencies like texlive, libmaruku-ruby does not depend on texlive (but only recommends it). This means that if you do not install texlive, you will not have PDF output. AUTHOR
maruku was written by Andrea Censi <andrea@rubyforge.org>. This manual page was written by Vincent Fourmond <fourmond@debian.org>, for the Debian project (but may be used by others). May 27, 2007 MARUKU(1)

Check Out this Related Man Page

HSMARKDOWN(1)						      General Commands Manual						     HSMARKDOWN(1)

NAME
hsmarkdown - convert markdown-formatted text to HTML SYNOPSIS
hsmarkdown [input-file]... DESCRIPTION
hsmarkdown converts markdown-formatted text to HTML. It is designed to be usable as a drop-in replacement for John Gruber's Markdown.pl. If no input-file is specified, input is read from stdin. Otherwise, the input-files are concatenated (with a blank line between each) and used as input. Output goes to stdout by default. For output to a file, use shell redirection: hsmarkdown input.txt > output.html hsmarkdown is implemented as a symlink to the pandoc(1) executable. When called under the name hsmarkdown, pandoc behaves as if it had been called with the options --from markdown --to html --strict and disables all other options. (Command-line options will be interpreted as filenames, as they are by Markdown.pl.) SEE ALSO
pandoc(1). The README file distributed with Pandoc contains full documentation. The Pandoc source code and all documentation may be downloaded from <http://johnmacfarlane.net/pandoc/>. AUTHORS
John MacFarlane. Pandoc User Manuals March 23, 2010 HSMARKDOWN(1)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl string matching problem (two backslash)

I have a few .tex files generated with html2latex. They have some extra \\ that generate error with pdflatex, so I would like to get rid of them. This perl -p -i -e s/\\\\//g myfile.tex with or without simple or double quote remove all of the backslashes, also the single ones needed by tex. How... (2 Replies)
Discussion started by: ahsog
2 Replies

2. UNIX for Beginners Questions & Answers

How to put a 80 character limit on a long topic line in markdown?

I have a topic line in markdown that spans more than 80 characters that i need to add a line break. Markdown is simply treating the line break as a brand new line instead of continuing as a topic line. Eg: # This is a very long line Markdown interprets it as This is a very long line (4 Replies)
Discussion started by: dragonpoint
4 Replies