Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/psibi/psibi.github.io
Hakyll blog
https://github.com/psibi/psibi.github.io
Last synced: about 1 month ago
JSON representation
Hakyll blog
- Host: GitHub
- URL: https://github.com/psibi/psibi.github.io
- Owner: psibi
- License: gpl-3.0
- Created: 2014-07-30T18:43:29.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T14:51:05.000Z (4 months ago)
- Last Synced: 2024-08-05T09:46:29.188Z (4 months ago)
- Language: CSS
- Homepage: https://psibi.in
- Size: 1.41 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* psibi.in
Website source for [[https://psibi.in][https://psibi.in]]. This is built via Hakyll.
** Usage
#+begin_src sh :exports both :eval never-export :results verbatim
make
#+end_src#+RESULTS:
: Please use `make ' where is one of\n\n
: gen Generate the site
: watch Watch and run the site
: clean Clean site
: build Watch and install new exectuable
: help Show help screen.** Getting CSS for syntax highlighting
Source: [[http://fixpt.de/blog/2017-12-03-hakyll-highlighting-themes.html][Hakyll themes]]
#+begin_example haskell
$ stack ghci --package skylighting
GHCi, version 8.8.4: https://www.haskell.org/ghc/ :? for help
Loaded GHCi configuration from /home/sibi/.ghci
[1 of 1] Compiling Main ( /home/sibi/github/psibi.github.io/hakyll.hs, interpreted )
Ok, one module loaded.
Loaded GHCi configuration from /tmp/haskell-stack-ghci/6bcc45a5/ghci-script
λ> import Skylighting
λ> writeFile "pygments.css" $ styleToCss pygments
#+end_example