packages feed

mdoc-0.1.0.0: src/Mdoc/TroffMacro.hs

-- |
--
-- Module      : Mdoc.TroffMacro
-- Copyright   : (c) 2026 Patrick Brisbin
-- License     : AGPL-3
-- Maintainer  : pbrisbin@gmail.com
-- Stability   : experimental
-- Portability : POSIX
module Mdoc.TroffMacro
  ( TroffMacro (..)
  ) where

import Mdoc.Prelude

data TroffMacro
  = TroffMacroDefineS Text (Maybe Text)
  | TroffMacroDefine Text (Maybe Text)
  | TroffMacroCall Text [Text]
  | TroffMacroEnd Text
  deriving stock (Eq, Show)