pandoc-stylefrommeta: Pandoc filter to customize links, images and paragraphs

[ bsd3, program, text ] [ Propose Tags ]

Pandoc filter to customize links, images and paragraphs (with restrictions). Styles are read from the metadata of the document: they may reside inside the document or in a separate YAML file.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.1.0, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.1.0, 0.2.1.1, 0.2.2.0, 0.2.3.0, 0.2.4.0, 0.3.0.0
Change log Changelog.md
Dependencies base (>=4.7 && <5), bytestring, containers (>=0.2), MissingH (>=1.0.0), pandoc (>=1.12), pandoc-types (>=1.12), text [details]
License BSD-3-Clause
Copyright 2016-2017 Alexey Radkov
Author Alexey Radkov <alexey.radkov@gmail.com>
Maintainer Alexey Radkov <alexey.radkov@gmail.com>
Category Text
Home page http://github.com/lyokha/styleFromMeta
Uploaded by lyokha at 2017-11-02T12:01:32Z
Distributions NixOS:0.3.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Executables styleFromMeta
Downloads 5316 total (33 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2017-11-02 [all 3 reports]

Readme for pandoc-stylefrommeta-0.2.0.1

[back to package description]

styleFromMeta

Pandoc filter to apply styles found in the metadata of the document to various objects.

Styling is supported for following types of objects:

  • Standalone and inlined images
  • Links
  • Paragraphs (with restrictions, see below)

Styles are read from the metadata of the document: they may reside inside the document or in a separate YAML file. For example,

    ---
    img_style :
      html : |
        ~~~~~
        <div style="clear: both; text-align: center; margin-bottom: 16px">
        <a href="$SRC$" style="margin-left: 10em;" alt="$ALT$">
        <img border="0" src="$SRC$" /></a></div>
        ~~~~~
      latex : |
        ~~~~~
        \begin{center}
        \includegraphics{$$SRC$$}
        \end{center}
        ~~~~~
      rst: |
        ~~~~~
        .. image:: $$SRC$$
           :height: 100px
           :width: 200 px
           :scale: 50 %
           :alt: $$ALT$$
           :align: right
        ~~~~~
      haddock: |
        ~~~~~
        <<$$SRC$$ An image $ALT$>>
        ~~~~~
    link_style :
      html : |
        ~~~~~
        <a href="$SRC$" style="margin-left: 1em; margin-right: 1em;">$ALT$</a>
        ~~~~~
      latex : |
        ~~~~~
        \href{$SRC$}{\colorbox{green}{$ALT$}}
        ~~~~~
    para_style :
      html : |
        <span style="display: block; margin-bottom: 16px;"></span>
    ...

declares styles img_style, link_style and para_style. Their names (except for the last) are arbitrarily chosen and may be referred from the document, for example

    ![$img_style$](../images/an_image.png)
    [$link_style$ *here*](http://example.com/)

Placeholders $ALT$, $SRC$ and $TITLE$ from style declarations are to be replaced by corresponding data found in the object declaration. In this example *here* corresponds to $ALT$, and http://example.com/ corresponds to $SRC$. Placeholders $$SRC$$ and $$TITLE$$ are replaced verbatim, in $$ALT$$ all formatting gets removed. In the example $$SRC$$ is used to keep underscores unescaped as they may reside in image names.

Notice that all metablocks contents, with the exclusion of para_style, are wrapped inside code blocks. This let the contents be substituted verbatim for any output format. However, raw HTML and TeX blocks are well supported by Pandoc, so we could rewrite parts of the example like this:

    ---
    img_style :
      html : |
        <div style="clear: both; text-align: center; margin-bottom: 16px">
        <a href="$SRC$" style="margin-left: 10em;" alt="$ALT$">
        <img border="0" src="$SRC$" /></a></div>
      latex : |
        \begin{center}
        \includegraphics{$$SRC$$}
        \end{center}

    # ...

    ...

The filter has support for raw HTML and TeX blocks, but this support is not complete, and in some cases substitutions may fail. In addition, Pandoc may re-format substitutions. That's why this method is not recommended to use.

As soon as paragraphs do not have place where to put extra data, style para_style is applied to all paragraphs in the document. Currently, only transformation to a span block is supported (which is probably useful only in HTML). Any contents found between opening and closing span tags are ignored: actual paragraph contents will be inserted inside them. Notice that wrapping inside code blocks is not allowed in para_style block.