hablog alternatives and similar packages
Based on the "Web" category.
Alternatively, view hablog alternatives based on common mentions on social networks and blogs.
-
swagger-petstore
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
haskell-bitmex-rest
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
scotty
Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp (Official Repository) -
servant
Main repository for the servant libraries — DSL for describing, serving, querying, mocking, documenting web applications and more! -
neuron
Future-proof note-taking and publishing based on Zettelkasten (superseded by Emanote: https://github.com/srid/emanote) -
apecs-gloss
a fast, extensible, type driven Haskell ECS framework for games -
haskell-kubernetes
Haskell bindings to the Kubernetes API (via swagger-codegen) -
airship
Helium + Webmachine = Airship. A toolkit for building declarative, RESTful web apps. -
servant-elm
Automatically derive Elm functions to query servant webservices -
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
digestive-functors
A general way to consume input using applicative functors -
kubernetes-client-core
Haskell client for the kubernetes API. A work in progress. -
backprop
Heterogeneous automatic differentiation ("backpropagation") in Haskell -
keera-hails-reactive-htmldom
Keera Hails: Haskell on Rails - Reactive Programming Framework for Interactive Haskell applications -
engine-io
A Haskell server implementation of the Engine.IO and Socket.IO (1.0) protocols -
ghcjs-dom
Make Document Object Model (DOM) apps that run in any browser and natively using WebKitGtk -
ghcjs-base
base library for GHCJS for JavaScript interaction and marshalling, used by higher level libraries like JSC
Updating dependencies is time-consuming.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of hablog or a related project?
README
Hablog
A simple blog platform with tags. Made with Haskell and Scotty.
Hablog will read posts written in Markdown from the _posts
folder.
License
Hablog is licensed under MIT license. This means the Haskell source files in the src directory. Highlight.js related content is not a part of Hablog and is not licensed by it.
Installation
git clone https://github.com/soupi/hablog
cd hablog
stack build
Running
hablog --title <TITLE> --theme <THEME> --domain <DOMAIN> <COMMAND> [--port <PORT> --tls-cert <TLS_CERT> --tls-port <TLS_PORT>]
<TITLE>
is the title you want in the HTML headers;<THEME>
islight
ordark
, depending on the theme you want, to create your own themes look at the examples in /static/css;<DOMAIN>
is the domain you're running the blog on;<COMMAND>
ishttp
,https
, orboth
;<PORT>
is thehttp
port (not required ifCOMMAND
ishttps
);<TLS_CERT>
is thehttps
certificate (not required ifCOMMAND
ishttp
);<TLS_PORT>
is thehttps
port (not required ifCOMMAND
ishttp
).
How to write a new post?
- All posts must go under the
/_posts/
directory - All pages must go under the
/_pages/
directory - The content of the post/page must correspond to a specific structure
A Post's Structure
title: <the title of the post>
route: <route to the post>
authors: <the author of the post, seperated, by, commas>
date: yyyy-mm-dd
tags: <tags for the post, separated, by, commas>
---
<The rest of the post in Markdown format>
A Page's Structure
title: <the title of the page>
route: <route to the page>
---
<The rest of the page in Markdown format>
*Note that all licence references and agreements mentioned in the hablog README section above
are relevant to that project's source code only.