I'm trying to generate a highlighting theme for my site created with pandoc framework.
I followed this guide : guide
I create my theme this way:
pandoc --print-highlight-style breezedark > my_style.theme
and then I add it to my command like this:
pandoc ..\articles\$_
-f markdown
-t html --template=..\template\article.html
--defaults=..\defaults\params_$($_.BaseName).yaml
--highlight-style my_style.theme <-------------------
--output ..\articles\$($_.BaseName).html
The problem is that when I go to fill it out, I get this error back, and the code doesn't get colored:
Could not read highlighting theme my_style.theme
What's the problem?
EDIT: i try adding this:
--highlight-style=breezedark
but my code doesn't get colored in html view.. i try this:
```bash
java -version
```
~~~bash
java -version
~~~
This is the source code of html:
<div class="sourceCode" id="cb2">
<pre class="sourceCode bash">
<code class="sourceCode bash">
<span id="cb2-1">
<a href="#cb2-1"></a>
<span class="ex">java</span> -version</span>
</code>
</pre>
</div>
<div class="sourceCode" id="cb3">
<pre class="sourceCode python">
<code class="sourceCode python">
<span id="cb3-1">
<a href="#cb3-1"></a>
<span class="bu">print</span>(<span class="st">"Hello, world!"</span>)
</span>
</code>
</pre>
</div>