pandoc-pyplot v2.2.0.0 Release Notes

Release Date: 2019-11-05 // over 4 years ago
  • 👀 Figures can now be rendered via Plotly (see issue #4)!

    To do so, simple replace the {.pyplot} class with the {.plotly} class. Markdown example:

    ```{.plotly caption="This is a Plotly figure!"}import plotly.graph\_objects as gofig = go.Figure( data=[go.Bar(y=[2, 1, 3])], layout\_title\_text="A Figure Displaying Itself")```