You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I write a fenced codeblock (markdown) with SPARQL code inside I expect generated latex code with SPARQL as a language for the listing. Pandoc produces LaTeX code without any language definition.
Source markdown document:
```sparqlselect ?namewhere { ?volcano a dbo:Volcano. ?volcano dbp:name ?name.}order by asc (?name)limit (10)```
Expected result:
\begin{lstlisting}[language=sparql]
select ?name
where {
?volcano a dbo:Volcano.
?volcano dbp:name ?name.
}
order by asc (?name)
limit (10)
\end{lstlisting}
Observed result:
\begin{lstlisting}
select ?name
where {
?volcano a dbo:Volcano.
?volcano dbp:name ?name.
}
order by asc (?name)
limit (10)
\end{lstlisting}
When I write a fenced codeblock (markdown) with SPARQL code inside I expect generated latex code with SPARQL as a language for the listing. Pandoc produces LaTeX code without any language definition.
Source markdown document:
Expected result:
Observed result:
Maybe the language list from Pandoc is out of date? The list of supported languages for listings is in the listings documentation on page 13.
The text was updated successfully, but these errors were encountered: