bwhelm
bwhelm
`:cd` to an iCloud directory linked via `:iexdir`. In that directory, let `a` be a subdirectory, and `a/b` a file. Now, `echo findfile(‘b’, ‘**’)` returns nothing, when it should return...
The new version of `pandoc` (1.16) adds in attributes to images and links. This breaks `pandoc-reference-filter` (as well as `pandocfilters`). I've fixed things in my fork of pandoc-reference-filter, though my...
As the first commit indicates, this allows for table captions with attributes. It seems to work reasonably well for LaTeX, html, and docx. Notice that `latex_table()` is a big hack....
- Works on LaTeX, html, html5, and markdown (though not well tested) - ~~Does not work on docx: captions don't show up (though the image does)~~ Now works with .docx...
…ions on or off. (Default is on.) `numbersections` is used in the `default.latex` template for the same purpose in LaTeX documents. This just extends its use to html, html5, and...
Currently pandoc-reference-filter strips all formatting from captions. This is undesirable, but fixing it requires some significant changes to `figure_replacement()`, treating LaTeX, html, and markdown all differently. I have a somewhat...
Use pandoc's markdown image link text as short caption in LaTeX ``` {#fig:ref} ``` should produce in LaTeX: ``` \begin{figure}[htbp] \centering \includegraphics{figure.jpg} \caption[short caption]{Long caption} \label{fig:ref} \end{figure}...