Skip to content

liquid-utilities/filthify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Filthify

A Liquid filter written in Liquid to undo smartify and sanitation filters


Table of Contents


Quick Start

Bash Variables

_module_https_url='https://github.com/liquid-utilities/filthify.git'
_module_relative_path='_includes/modules/filthify'

Bash Submodule Commands

cd "<your-git-project-path>"

git checkout gh-pages
mkdir -vp "_includes/modules"

git submodule add -b master "${_module_https_url}" "${_module_relative_path}"

Your ReadMe File

Your Quick Start Section

Clone with the following to avoid incomplete downloads



    git clone --recurse-submodules <url-for-your-project>

Your Updates/Upgrades Section

Update/upgrade submodules via


    git submodule update --init --recursive
    git submodule update --merge

Utilize Filthify

{% include modules/filthify/filthify.html input=something %}

Replace something with content to be de-sanitized and un-smartified. However, be aware that filthify.html will append one blank line at the end of output.

Commit and Push

git add .gitmodules
git add _includes/content-filters/filthify


## Add any changed files too


git commit -F- <<'EOF'
Submodule `liquid-utilities/filthify` added for self documenting scss

This probably should not be needed but scss do not support FrontMater
And Liquid does not support commented FrontMater tags within scss files
EOF


git push origin gh-pages

License

Filthify ReadMe documenting how things like this could be utilized
Copyright (C) 2019  S0AndS0

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation; version 3 of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.