blatex 0.1.0.2 → 0.1.0.3
raw patch · 2 files changed
+23/−2 lines, 2 files
Files
- Files.hs +20/−0
- blatex.cabal +3/−2
+ Files.hs view
@@ -0,0 +1,20 @@+module Files where+++exampleTeXPost :: String+exampleTeXPost = unlines+ [ "\\documentclass{article}"+ , "\\author{Rushi Shah}"+ , "\\date{January 2015}"+ , "\\title{Example Post}"+ , "\\begin{document}"+ , "\\maketitle"+ , "This is an example LaTeX/PDF post."+ , "\\end{document}"+ ]++exampleBltxFile :: String+exampleBltxFile = unlines+ [ "<ul id='blog-posts'>"+ , "</ul>"+ ]
blatex.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: blatex-version: 0.1.0.2+version: 0.1.0.3 synopsis: Blog in LaTeX description: Static site generator that lets you write your blog in LaTeX and publish it to github pages. description: Markdown and HTML are the standard tools used to write your every day tech blog with. But they have pretty weak support for embedding mathematical formulas, and are not conducive to writing for an extended period of time. Plus, they aren't even Turing complete! So use BlaTeX to start blogging in LaTeX!@@ -33,7 +33,8 @@ , text >=1.1 && <1.2 -- hs-source-dirs: default-language: Haskell2010-+ other-modules: Files+ source-repository head type: git location: https://github.com/2016rshah/BlaTeX.git