cabal-version: 2.4 name: hakyll-shortcut-links version: 0.1.0.2 synopsis: Use shortcut-links in markdown file for Hakyll description: Use shortcut-links in markdown file for Hakyll. See README for more details. homepage: https://github.com/kowainik/hakyll-shortcut-links bug-reports: https://github.com/kowainik/hakyll-shortcut-links/issues license: MPL-2.0 license-file: LICENSE author: Veronika Romashkina, Dmitrii Kovanikov maintainer: Kowainik copyright: 2019-2021 Kowainik category: Web, Hakyll, Markdown build-type: Simple extra-doc-files: README.md CHANGELOG.md tested-with: GHC == 8.8.4 GHC == 8.10.7 source-repository head type: git location: https://github.com/kowainik/hakyll-shortcut-links.git common common-options build-depends: base >= 4.13.0.0 && < 4.15 ghc-options: -Wall -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates if impl(ghc >= 8.0) ghc-options: -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies -Werror=missing-deriving-strategies -fwrite-ide-info -hiedir=../.hie if impl(ghc >= 8.10) ghc-options: -Wunused-packages default-extensions: ConstraintKinds DeriveGeneric DerivingStrategies GeneralizedNewtypeDeriving KindSignatures InstanceSigs LambdaCase OverloadedStrings RecordWildCards ScopedTypeVariables StandaloneDeriving TupleSections TypeApplications ViewPatterns default-language: Haskell2010 library import: common-options hs-source-dirs: src exposed-modules: Hakyll.ShortcutLinks Hakyll.ShortcutLinks.Parser build-depends: hakyll >= 4.13 && < 4.16 , mtl ^>= 2.2.2 , pandoc-types >= 1.20 && < 1.23 , parsec ^>= 3.1.14 , shortcut-links ^>= 0.5.0.0 , text ^>= 1.2 test-suite hakyll-shortcut-links-test import: common-options type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs other-modules: Test.Links Test.Parser build-depends: hakyll-shortcut-links , hspec ^>= 2.9 , mtl , pandoc >= 2.9 && < 2.17 , text ghc-options: -threaded -rtsopts -with-rtsopts=-N