pandoc-emphasize-code icon indicating copy to clipboard operation
pandoc-emphasize-code copied to clipboard

A Pandoc filter for emphasizing code in fenced blocks

Results 9 pandoc-emphasize-code issues
Sort by recently updated
recently updated
newest added

`tasty-hspec` removed the re-export of `Test.Hspec` with version 1.1.7, which made the test suite fail to compile. This commit adds `hspec` as a test dependency and adds explicit imports from...

Compilation fails with the following error: ``` [7 of 9] Compiling Text.Pandoc.Filter.EmphasizeCode.Latex /private/var/folders/3b/9plp3gb959gcv_nyqg9j_k740000gn/T/stack70671/pandoc-emphasize-code-0.2.4/src/Text/Pandoc/Filter/EmphasizeCode/Latex.hs:48:8: error: • Couldn't match type ‘[Char]’ with ‘Text’ Expected type: Text Actual type: String • In the...

When trying to use `pandoc-emphasize-code` with the latest pandoc 2.9.1.1, I get the following error: ``` pandoc-emphasize-code: Error in $: Incompatible API versions: encoded with [1,20] but attempted to decode...

I realize that I'm several layers down a rabbit hole, but it looks like you have a great tool and that it should be able to match my use case...

Here is my input file, example.md, only a slight variation on doc example from the docs: --- header-includes: - \usepackage{listings} - \lstset{basicstyle=\ttfamily} - \newcommand{\CodeEmphasis}[1]{\textcolor{red}{\textit{#1}}} - \newcommand{\CodeEmphasisLine}[1]{\colorbox{yellow}{#1}} --- # My Slide...

help wanted

Hello! Good job with the package. I'm a new contributor and I think that the filter gives an error with whole-line ranges when I tried it out of the box....

Similar to https://github.com/owickstrom/pandoc-include-code/pull/14, add instructions to use with Hakyll. I also added a few lines on how to build the `README.src.md`. Looks like the Tex distribution I used has slightly...

As discussed in https://github.com/owickstrom/pandoc-emphasize-code/pull/3#issuecomment-403314283, code rendered as LaTeX, through the `listings` package, needs to be escaped. We could use Pandoc itself for this.

enhancement