Fixing github markdown README

This commit is contained in:
Solene Rapenne 2016-04-30 17:37:34 +02:00
parent 4df8123e33
commit 0fe2cf4300
1 changed files with 17 additions and 20 deletions

37
README
View File

@ -1,45 +1,42 @@
Introduction
===
# Introduction
This blog is generated using cl-yag. It stands for Common Lisp Yet Another Generator and obviously it's written in Common Lisp.
It has only one dependency : a common lisp interpreter, I recommend both sbcl or clisp which are free, open-source and multi-platform.
The hierarchy
===
# The hierarchy
Here are the files and folder you can find in your project folder :
- **Makefile** : exists to simplify your life (updating, cleaning)
- **generator.lisp** : contains all the code of the generator
- **templates/** : contains .tpl files which are used as template for the html structure
- **static/** : contains static files that need to be made public like images, css, js etc...
- **data/** : contains what will make the content of your website different from another website (or not)
- **articles.lisp** : contains metadata about the website and the list of the articles with their id/title/date/(author/short description) (aren't mandatory)
- **${id}.txt** : contains the html text of the article ${id} that will be used when displayed
- **output** : this is where the websites goes when your run *make*, and where it's cleaned when you run *make clean*;
+ **Makefile** : exists to simplify your life (updating, cleaning)
+ **generator.lisp** : contains all the code of the generator
+ **templates/** : contains .tpl files which are used as template for the html structure
+ **static/** : contains static files that need to be made public like images, css, js etc...
+ **data/** : contains what will make the content of your website different from another website (or not)
+ **articles.lisp** : contains metadata about the website and the list of the articles with their id/title/date/(author/short description) (aren't mandatory)
+ **${id}.txt** : contains the html text of the article ${id} that will be used when displayed
+ **output** : this is where the websites goes when your run *make*, and where it's cleaned when you run *make clean*;
How to add an article
===
# How to add an article
Edit data/articles.lisp and add a new line inside the *articles* variable like this
```
(list :id "2" :date "29 April 2016" :title "How do I use cl-yag" :author "Solène" :short "I will explain how to use the generator")
```
(list :id "2" :date "29 April 2016" :title "How do I use cl-yag" :author "Solène" :short "I will explain how to use the generator")
The _:short_ field is used on the homepage. It it is defined, this is the text that will be shown on the homepage with all the others articles. If it's not defined, the whole article content will be used on the homepage. Sometimes when you have long articles, you may not want to display it entirely on the index so you can use _:short "view the article for the full text_.
The _:author_ field is used to display who wrote the article. You can omitt it, the generator will take the name from the *config* variable
How to use markdown for articles
===
# How to use markdown for articles
Here is a tip to produce html files from markdown using emacs