Created
February 20, 2018 14:25
-
-
Save ed-cooper/1927af4ccac39b083440d436d018d253 to your computer and use it in GitHub Desktop.
Latex lstlisting json language style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\definecolor{delim}{RGB}{20,105,176} | |
\definecolor{numb}{RGB}{106, 109, 32} | |
\definecolor{string}{rgb}{0.64,0.08,0.08} | |
\lstdefinelanguage{json}{ | |
numbers=left, | |
numberstyle=\small, | |
frame=single, | |
rulecolor=\color{black}, | |
showspaces=false, | |
showtabs=false, | |
breaklines=true, | |
postbreak=\raisebox{0ex}[0ex][0ex]{\ensuremath{\color{gray}\hookrightarrow\space}}, | |
breakatwhitespace=true, | |
basicstyle=\ttfamily\small, | |
upquote=true, | |
morestring=[b]", | |
stringstyle=\color{string}, | |
literate= | |
*{0}{{{\color{numb}0}}}{1} | |
{1}{{{\color{numb}1}}}{1} | |
{2}{{{\color{numb}2}}}{1} | |
{3}{{{\color{numb}3}}}{1} | |
{4}{{{\color{numb}4}}}{1} | |
{5}{{{\color{numb}5}}}{1} | |
{6}{{{\color{numb}6}}}{1} | |
{7}{{{\color{numb}7}}}{1} | |
{8}{{{\color{numb}8}}}{1} | |
{9}{{{\color{numb}9}}}{1} | |
{\{}{{{\color{delim}{\{}}}}{1} | |
{\}}{{{\color{delim}{\}}}}}{1} | |
{[}{{{\color{delim}{[}}}}{1} | |
{]}{{{\color{delim}{]}}}}{1}, | |
} |
@Joseda8 what a coincidence that I needed this today and you left your version just yesterday! Awesome! Thank you so much for the both of you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works perfectly. Thanks so much! I'm adding a version without the line numbers and the borders in case that someone needs it: