shortcut-links-0.5.0.0: shortcut-links.cabal
cabal-version: 2.4
name: shortcut-links
version: 0.5.0.0
synopsis: Link shortcuts for use in text markup
description:
This package is a database of link shortcuts. A Markdown example:
@\[Google\](\@w)@ turns into <http://en.wikipedia.org/wiki/Google>.
.
See the "ShortcutLinks.All" module for a full list of shortcuts.
homepage: http://github.com/kowainik/shortcut-links
bug-reports: http://github.com/kowainik/shortcut-links/issues
license: MPL-2.0
license-file: LICENSE
author: Artyom
maintainer: Kowainik <xrom.xkov@gmail.com>
copyright: 2015–2019 Aelve (BSD-3-Clause)
2019-2020 Kowainik
category: Text, Web, Markdown
build-type: Simple
stability: stable
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.2.2
GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.1
source-repository head
type: git
location: git://github.com/kowainik/shortcut-links.git
library
hs-source-dirs: src
exposed-modules: ShortcutLinks
ShortcutLinks.All
ShortcutLinks.Utils
build-depends: base >= 4.5 && < 4.14
, text >= 1.1 && < 1.3
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
if impl(ghc >= 8.8.1)
ghc-options: -Wmissing-deriving-strategies
-Werror=missing-deriving-strategies
default-extensions: DerivingStrategies
InstanceSigs
OverloadedStrings
default-language: Haskell2010