Skip to content

Commit

Permalink
Fix comments in TEI writer referring to DocBook (#10430)
Browse files Browse the repository at this point in the history
  • Loading branch information
silby authored Dec 2, 2024
1 parent 561e1de commit 9f6f2c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Text/Pandoc/Writers/TEI.hs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternGuards #-}
{- |
Module : Text.Pandoc.Writers.Docbook
Module : Text.Pandoc.Writers.TEI
Copyright : Copyright (C) 2006-2024 John MacFarlane
License : GNU GPL, version 2 or above
Maintainer : John MacFarlane <[email protected]>
Stability : alpha
Portability : portable
Conversion of 'Pandoc' documents to Docbook XML.
Conversion of 'Pandoc' documents to TEI XML
-}
module Text.Pandoc.Writers.TEI (writeTEI) where
import Data.Text (Text)
Expand All @@ -27,7 +27,7 @@ import Text.Pandoc.Templates (renderTemplate)
import Text.Pandoc.Writers.Shared
import Text.Pandoc.XML

-- | Convert Pandoc document to string in Docbook format.
-- | Convert Pandoc document to string in TEI XML format.
writeTEI :: PandocMonad m => WriterOptions -> Pandoc -> m Text
writeTEI opts doc = do
let Pandoc meta blocks = ensureValidXmlIdentifiers doc
Expand Down

0 comments on commit 9f6f2c8

Please sign in to comment.