-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Formats Strings with subscript or superscript characters -- -- Please see README.md @package sscript @version 0.1.0.1 -- | Formats Strings with subscript or superscript characters module Data.Char.SScript -- | subscripts a char -- --
--   subscript '0' == '₀'
--   
subscript :: Char -> Char -- | superscripts a char -- --
--   subscript '0' == '⁰'
--   
superscript :: Char -> Char -- | formats a string -- --
--   formatSS "x_1^2 + x_2^2 + x_3^2 = z^2" == "x₁² + x₂² + x₃² = z²"
--   
formatSS :: String -> String module Data.Char module Data