packages feed

pandoc-sidenote-0.20.0.0: pandoc-sidenote.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 6dc364e65c31a9cfa4710a50751353bc27d6b9a25404043839d770e41c2f207c

name:           pandoc-sidenote
version:        0.20.0.0
synopsis:       Convert Pandoc Markdown-style footnotes into sidenotes
description:    This is a simple Pandoc filter to convert footnotes into a format that can be consumed by Tufte CSS. On the whole, this project weighs in at well under 100 lines of code. Check out SideNote.hs if you're curious how it works.
category:       CommandLine
homepage:       https://github.com/jez/pandoc-sidenote#readme
bug-reports:    https://github.com/jez/pandoc-sidenote/issues
author:         Jake Zimmerman
maintainer:     zimmerman.jake@gmail.com
copyright:      2016 Jake Zimmerman
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    LICENSE

source-repository head
  type: git
  location: https://github.com/jez/pandoc-sidenote

library
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Wmissing-signatures -funbox-strict-fields
  build-depends:
      base >=4.7 && <5
    , mtl
    , pandoc-types >=1.20
    , text
  exposed-modules:
      Text.Pandoc.SideNote
  other-modules:
      Paths_pandoc_sidenote
  default-language: Haskell2010

executable pandoc-sidenote
  main-is: Main.hs
  hs-source-dirs:
      ./
  ghc-options: -Wall -Wcompat -Wmissing-signatures -funbox-strict-fields -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , mtl
    , pandoc-sidenote
    , pandoc-types >=1.20
    , text
  other-modules:
      Paths_pandoc_sidenote
  default-language: Haskell2010