blob: cfc02c10e8b7186a9915b387b7274795febac7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# All relatives paths must end with slash and must not be start by dot and/or slash
# Examplo
# VAR_PATH=dir/subdir/
# Folder where posts are stored, must be relative and suffed by a slash
ARTICLES_PATH=artigos/
# Supported article file extensions, must be separated by vertical bar
# Exemple
# ARTICLES_EXTS="txt|html|md"
ARTICLES_EXTS="txt|html|md"
|