aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Readers/Org/Inline
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert+github@zeitkraut.de>2019-02-04 22:52:31 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2019-02-04 13:52:31 -0800
commit37a82b0b11b0214f00cdcd232e33c0a1e9f79361 (patch)
treead1c09cdf14e578ebd7f31843ecce2bd7c4abd17 /test/Tests/Readers/Org/Inline
parent4b8931108104db71c1bc70fb33c00179a315b6d6 (diff)
downloadpandoc-37a82b0b11b0214f00cdcd232e33c0a1e9f79361.tar.gz
Add missing copyright notices and remove license boilerplate (#5112)
Quite a few modules were missing copyright notices. This commit adds copyright notices everywhere via haddock module headers. The old license boilerplate comment is redundant with this and has been removed. Update copyright years to 2019. Closes #4592.
Diffstat (limited to 'test/Tests/Readers/Org/Inline')
-rw-r--r--test/Tests/Readers/Org/Inline/Citation.hs11
-rw-r--r--test/Tests/Readers/Org/Inline/Note.hs11
-rw-r--r--test/Tests/Readers/Org/Inline/Smart.hs11
3 files changed, 33 insertions, 0 deletions
diff --git a/test/Tests/Readers/Org/Inline/Citation.hs b/test/Tests/Readers/Org/Inline/Citation.hs
index c7974efa0..d718bba18 100644
--- a/test/Tests/Readers/Org/Inline/Citation.hs
+++ b/test/Tests/Readers/Org/Inline/Citation.hs
@@ -1,5 +1,16 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
+{- |
+ Module : Tests.Readers.Org.Inline.Citation
+ Copyright : © 2014-2019 Albert Krewinkel
+ License : GNU GPL, version 2 or above
+
+ Maintainer : Albert Krewinkel <albert@zeitkraut.de>
+ Stability : alpha
+ Portability : portable
+
+Test parsing of citations in org input.
+-}
module Tests.Readers.Org.Inline.Citation (tests) where
import Prelude
diff --git a/test/Tests/Readers/Org/Inline/Note.hs b/test/Tests/Readers/Org/Inline/Note.hs
index 1e0a59cb4..086e4fe37 100644
--- a/test/Tests/Readers/Org/Inline/Note.hs
+++ b/test/Tests/Readers/Org/Inline/Note.hs
@@ -1,5 +1,16 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
+{- |
+ Module : Tests.Readers.Org.Inline.Note
+ Copyright : © 2014-2019 Albert Krewinkel
+ License : GNU GPL, version 2 or above
+
+ Maintainer : Albert Krewinkel <albert@zeitkraut.de>
+ Stability : alpha
+ Portability : portable
+
+Test parsing of footnotes in org input.
+-}
module Tests.Readers.Org.Inline.Note (tests) where
import Prelude
diff --git a/test/Tests/Readers/Org/Inline/Smart.hs b/test/Tests/Readers/Org/Inline/Smart.hs
index b2889f8fe..7202adc97 100644
--- a/test/Tests/Readers/Org/Inline/Smart.hs
+++ b/test/Tests/Readers/Org/Inline/Smart.hs
@@ -1,5 +1,16 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
+{- |
+ Module : Tests.Readers.Org.Inline.Smart
+ Copyright : © 2014-2019 Albert Krewinkel
+ License : GNU GPL, version 2 or above
+
+ Maintainer : Albert Krewinkel <albert@zeitkraut.de>
+ Stability : alpha
+ Portability : portable
+
+Test smart parsing of quotes, apostrophe, etc.
+-}
module Tests.Readers.Org.Inline.Smart (tests) where
import Prelude