We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bra tips:
docker run --rm -v C:\Git\personal:/data pandoc/latex:2.6 ` --highlight-style haddock.theme ` --output=DeveloperSetup.html ` DeveloperSetup.md ` --standalone ` --table-of-contents
--- title: Developer Setup papersize: a4 documentclass: article header-includes: - \usepackage{multicol} - \usepackage[a4paper,margin=2cm]{geometry} - \newcommand{\hideFromPandoc}[1]{#1} - \hideFromPandoc{ \let\Begin\begin \let\End\end } --- ## Code \Begin{multicols}{2} C-like: ~~~ {.c .numberLines .line-anchors} if (a > 3) { moveShip(5 * gravity, DOWN); } ~~~ Haskell: ~~~ {#mycode .haskell .numberLines startFrom="100" .line-anchors} qsort [] = [] qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (>= x) xs) ~~~ F# ~~~ {.fsharp .numberLines .line-anchors} let x = 1 let rec f y = match y with | 0 -> 0 | x -> f (x - 1) ~~~ ~~~ {.cs .numberLines} ~~~ \End{multicols}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bra tips:
The text was updated successfully, but these errors were encountered: