diff options
author | EuAndreh <eu@euandre.org> | 2020-10-05 10:30:13 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-05 10:30:13 -0300 |
commit | ef1f6617bd1c63b0f77f5d8c76a5887b210de248 (patch) | |
tree | 9f5e72edfc67b1e4e85691ca25a541bd59d50a45 /scripts | |
parent | _config.yml: Use custom permalink to *not* include the category on the URL (diff) | |
download | euandre.org-ef1f6617bd1c63b0f77f5d8c76a5887b210de248.tar.gz euandre.org-ef1f6617bd1c63b0f77f5d8c76a5887b210de248.tar.xz |
Revert back to the title with colon
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/assert-content.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/assert-content.sh b/scripts/assert-content.sh index afcf9a0..ab11183 100755 --- a/scripts/assert-content.sh +++ b/scripts/assert-content.sh @@ -84,12 +84,6 @@ assert-frontmatter() { if ! contains-element "${URL}" "${IGNORED_PAGES[@]}"; then TITLE="$(get-title "$F")" [[ -z "${TITLE}" ]] && fail-attr 'title' "${URL}" - if grep ':' <(echo "$TITLE") > /dev/null; then - echo "Use of forbidden colon ':' on title '$TITLE'" - echo "Colons will make Jekyll create a subdirectory on the final path" - echo "Replace it with a dash '-'" - exit 1 - fi fi if ! contains-element "${LANG}" "${LANGS[@]}"; then |