pandoc-crossref
                                
                                 pandoc-crossref copied to clipboard
                                
                                    pandoc-crossref copied to clipboard
                            
                            
                            
                        Pandoc filter for cross-references
relates to https://github.com/Homebrew/homebrew-core/pull/171468
test.yml: ```yml tableEqns: true eqnBlockTemplate: | $$t$$$$i$$ ``` test.md: ```md test $$x$$ test $$y$$ {#eq:test} test ``` Run: ```shell pandoc -f markdown -t html5 -M crossrefYaml=test.yml -F pandoc-crossref test.md ```...
https://github.com/lierdakil/pandoc-crossref/blob/ad9af798037eb6d67994c22c601c8bdaaddd49c3/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Math.hs#L68 That `length` wastes some serious CPU.
Hello! Original issue with details is here: https://github.com/jgm/pandoc/issues/9888 When generating typst documents, the figure caption is duplicated. This doesn't occur for word or latex output.
example: 图 1.1 I want to change it to 图 1-1
Pandoc: 2.9.2.1 (as provided by WSL) pandoc-crossref: 0.3.6.4 Source is in markdown. Output is HTML. Template file includes: ``` $if(lot)$ List of Tables $listoftables$ $endif$ ``` pandoc command line is:...
Hello, I am trying to convert a LaTeX document to DOCX using `pandoc` and `pandoc-crossref`, but I am encountering issues with the numbering format for figures and tables in the...
I have made a simple test in markdown: ``` # Headline A ## Headline B ## Headline C {#sec:section1} # Headline D ## Headline B ## Headline C {#section2} ```...
I have come across a bug where when a table in the `simple_tables` style is preceded by a list item, references to that table are undefined. For example, if I...
Hello, First of all, thank you for your work on pandoc-crossref! It’s an invaluable tool for those of us who prefer a programmatic, WYSIWYM workflow for document creation. **Background:** I...