Skip to content

Instantly share code, notes, and snippets.

@stefanfrede
Last active January 27, 2018 08:20
Show Gist options
  • Save stefanfrede/4d77e229b153c33c41114c9d23914960 to your computer and use it in GitHub Desktop.
Save stefanfrede/4d77e229b153c33c41114c9d23914960 to your computer and use it in GitHub Desktop.
Latex snippet for Anki to preview JavaScript code.
// Inline
[latex]\mintinline[bgcolor=black]{js}|...code goes here...|[/latex]
// Multi line
[latex]
\begin{minted}
[
frame=lines,
framesep=2mm,
bgcolor=black,
baselinestretch=1,
fontsize=\footnotesize,
linenos
]
{js}
...code goes here...
\end{minted}
[/latex]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment