pandoc-pyplot v2.1.3.0 Release Notes

Release Date: 2019-06-04 // almost 5 years ago
  • ๐Ÿš€ This release sees one major change:

    • ๐Ÿ”— Links to source code and high-res images can be suppressed using {.pyplot with-links=false ...} (or via the configuration file with with-links: false). This is to get cleaner output in technical documentation (e.g. PDF). Example:

      ```{.pyplot caption="This is a caption" with-links=false}
      import matplotlib.pyplot as plt
      plt.figure()
      plt.plot([1,2,3,4,5],[1,2,3,4,5])
      ```
      

    Other notable changes:

    • ๐Ÿ“œ Switched to using optparse-applicative for command-line argument parsing.
    • โž• Added a command-line options, "--write-example-config", which will write a config file ".pandoc-pyplot.yml" to show all available configuration options.
    • โž• Added automated builds on macOS and Linux via Azure-Pipelines. Windows build will stay on Appveyor for now.