aboutsummaryrefslogtreecommitdiffstats
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* blogc: renderer: add `FOREACH_VALUE` variableRafael G. Martins2023-02-111-5/+29
|
* blogc: man: added initial blogc-toctree(7)Rafael G. Martins2020-09-122-0/+88
|
* blogc: added listing_empty template blockRafael G. Martins2020-05-161-24/+38
|
* blogc: allow passing multiple -e optionsRafael G. Martins2020-04-222-6/+17
|
* make: rules: added pagination_tagsRafael G. Martins2019-07-151-0/+12
| | | | needs tests, but is supposed to work
* man: improvementsRafael G. Martins2019-05-022-6/+7
|
* Revert "make: support posts autoloading"Rafael G. Martins2019-05-011-9/+0
| | | | | | | | It works mostly fine, but if you build a website, delete some files and try to rebuild, it won't be able to detect the removed files. This may be reverted when I find a solution for this problem. This reverts commit 792ac4ec66dd098109a88065420ef95c1a78624f.
* make: support posts autoloadingRafael G. Martins2019-04-281-0/+9
|
* make: support posts sortingRafael G. Martins2019-04-281-0/+5
|
* blogc: added FILTER_SORT, to sort posts by DATERafael G. Martins2019-04-281-3/+9
|
* make: man: removed 'atom_legacy_entry_id'Rafael G. Martins2019-04-211-6/+0
|
* blogc: added support for formatted variables in -pRafael G. Martins2019-04-131-5/+0
|
* make: added support for `blogc -e`Rafael G. Martins2019-04-031-0/+6
| | | | must still add tests
* blogc: added `-e` cli option and `listing_entry` template blockRafael G. Martins2019-04-022-10/+39
|
* man: improved description of `blogc -p`Rafael G. Martins2019-03-281-7/+7
|
* blogc: dump source file variables as well as global variablesRafael G. Martins2019-03-271-3/+9
|
* blogc: content: do not escape inline codeRafael G. Martins2019-02-241-0/+3
| | | | | | this is more compatible with markdown spec[1] [1] https://daringfireball.net/projects/markdown/syntax#code
* man: added documentation for predefined template variablesRafael G. Martins2019-02-101-0/+47
|
* man: s/converts/compiles/Rafael G. Martins2018-08-191-1/+1
|
* man: minor fixesRafael G. Martins2018-07-272-2/+2
|
* make: added atom_dump helper ruleRafael G. Martins2018-07-262-1/+9
|
* make: allow custom atom templatesRafael G. Martins2018-07-261-5/+10
|
* man: next version will be 0.14.0, not 0.13.11Rafael G. Martins2018-07-261-2/+2
|
* make: implemented atom_legacy_entry_id settingRafael G. Martins2018-07-251-0/+6
| | | | This allows current users to avoid atom entry id changes.
* git-receiver: man: update documentationRafael G. Martins2018-06-101-5/+19
|
* git-receiver: man: typoRafael G. Martins2018-06-101-1/+1
|
* make: disable post listings if {atom_,}posts_per_page is 0Rafael G. Martins2018-06-101-3/+3
|
* Revert "make: disable pagination rules if <= 0 posts per page"Rafael G. Martins2018-06-101-3/+3
| | | | | | This reverts commit cab17026f64ba78bfd9dcac6327607af8e396ebd. Poorly implemented :/
* make: disable pagination rules if <= 0 posts per pageRafael G. Martins2018-06-091-3/+3
|
* git-receiver: allow users to define builds dirRafael G. Martins2018-05-311-4/+12
|
* git-receiver: allow users to change the base directoryRafael G. Martins2018-05-301-6/+17
| | | | | this is useful mostly for shared environments that just provide one shell user.
* make: updated man pageRafael G. Martins2018-05-141-3/+11
|
* make: allow to disable pagination by setting posts_per_page<0Rafael G. Martins2018-03-202-4/+7
|
* blogc: loader: respect FILTER_PER_PAGE=0Rafael G. Martins2018-03-201-4/+6
|
* make: avoid infinite-loop if posts_per_page <= 0Rafael G. Martins2018-03-201-1/+2
|
* make: rename TAG_CLOUD to MAKE_TAGSRafael G. Martins2018-03-121-1/+1
| | | | | all the template helper variables provided by blogc-make should start with MAKE_
* make: man: improved rule docsRafael G. Martins2018-03-121-25/+89
|
* make: pass TAG_CLOUD variable to blogc.Rafael G. Martins2018-03-101-1/+5
| | | | | this variable includes all the tags configured in blogcfile(5) as a space-separated string.
* man: git-receiver: add blogc-make to manRafael G. Martins2017-11-192-14/+16
|
* make: improved runserver docsRafael G. Martins2017-11-191-1/+6
|
* man: added blogcfile.5, updated some other pagesRafael G. Martins2017-11-186-10/+200
|
* loader: added FILTER_REVERSERafael G. Martins2017-07-251-0/+5
|
* make: man: document rulesRafael G. Martins2017-07-231-2/+35
|
* make: settings: do not read output_dir from blogcfileRafael G. Martins2017-04-281-2/+1
| | | | | now it is only possible to override output directory using environment variable. this commit also reduces the number trie lookups.
* runserver: allow users to override default host/port with env varRafael G. Martins2017-04-101-0/+8
|
* make: all builds are "production" by default, enable "dev" on cli.Rafael G. Martins2017-03-111-4/+5
| | | | | | this is more consistent with other similar tools, and enables us to add something like a [copy:dev] section later, that will avoid copying dev files to production builds.
* make: add support to "production" buildsRafael G. Martins2017-03-071-0/+4
| | | | this is used by blogc-github-lambda and blogc-git-receiver.
* content-parser: source-parser: rename TITLE to FIRST_HEADERRafael G. Martins2017-02-151-5/+5
|
* content-parser: html-encode pre-defined title. updated man pagesRafael G. Martins2017-02-152-1/+7
|
* make: added initial man pageRafael G. Martins2017-01-032-0/+80
|