lhs2TeX-hl: Literate highlighter preprocessor for lhs2tex

[ development, language, mit, program ] [ Propose Tags ]

A helper executable for highlighting code with lhs2tex. It parses any haskell file and outputs a format file to be used with lhs2tex. Currently no recursion is supported.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.9, 0.1.1.0, 0.1.1.1, 0.1.2.0, 0.1.2.1, 0.1.2.2, 0.1.3, 0.1.3.1, 0.1.3.2, 0.1.3.3, 0.1.4.0, 0.1.4.1, 0.1.4.2, 0.1.4.3, 0.1.4.4, 0.1.4.5
Dependencies Agda (>=2.2.6), base (>=4 && <=5), cmdargs (>=0.1), haskell-src-exts (>=1.9.3), haskell98, MissingH (>=1.1.0.3), syb (>=0.1.0.1) [details]
License MIT
Author Alessandro Vermeulen <me@alessandrovermeulen.me>
Maintainer Alessandro Vermeulen <me@alessandrovermeulen.me>
Category Development, Language
Uploaded by AlessandroVermeulen at 2010-10-24T00:25:15Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables lhs2TeX-hl
Downloads 10888 total (36 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-28 [all 6 reports]

Readme for lhs2TeX-hl-0.1.0.9

[back to package description]
  Literate HS to TeX Highlighter Helper
  =====================================
  
  Hi there,
  
  This is the very first release of the lhs2tex helper for syntax highlighting.
  Use it in addition with lhs2tex. Due to a huge demand I make this tool 
  publicly available. Use it your own risk. I am not responsible for any
  conveniences or inconveniences caused by using this software.
  
  It aims to detect the `kind' of a token either by it's use or it's
  declaration. Trying to detect both local declarations and usages.
  
  Regards,
  Alessandro Vermeulen
  
  INSTALLING
  ----------
  
  * Download the zip file.
  * Extract
  * Go to the directory and run
    > cabal install
    
  * That's all
  
  USAGE
  -----
  
  > lhs2TeX-hl INPUTFILE -o OUTPUTFILE
  
  For more details see:
  
  > lhs2TeX-hl --help
  
  Currently this is the only way to work with the tool.
  
  In your .tex files add %include OUTPUFILE to tell lhs2tex to use the generated
  formatting directives. You'll need to provide the following commands yourself:
  
  * \lhsCHkeyword
  * \lhsCHprelude
  * \lhsCHtype
  * \lhsCHlitNumber
  * \lhsCHconstructor
  * \lhsCHfunction
  * \lhsCHinfixoperator
  
  KNOWN ISSUES
  ------------
  
  * Infix operators may not work that great, or normal functions that are used
    `infix`.
  * It doesn't do literal string and char highlighting yet.
  * AGDA isn't supported yet unfortunately.
  * Errors aren't that informative. :)