blob: f61d2a412843cc3e9d7dc771f48291323b4945a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{-|
Module : $header$
Copyright : (c) Laurent P René de Cotret, 2019
License : MIT
Maintainer : laurent.decotret@outlook.com
Stability : internal
Portability : portable
This module re-exports internal pandoc-pyplot functionality.
-}
module Text.Pandoc.Filter.Pyplot.Internal (
module Text.Pandoc.Filter.Pyplot.Configuration
, module Text.Pandoc.Filter.Pyplot.FigureSpec
, module Text.Pandoc.Filter.Pyplot.Scripting
, module Text.Pandoc.Filter.Pyplot.Types
) where
import Text.Pandoc.Filter.Pyplot.Configuration
import Text.Pandoc.Filter.Pyplot.FigureSpec
import Text.Pandoc.Filter.Pyplot.Scripting
import Text.Pandoc.Filter.Pyplot.Types
|