aboutsummaryrefslogtreecommitdiff
path: root/share/templater/ikiwiki
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
commitca223571c8548fda2e6571daf497482d8d236362 (patch)
tree86daa0f8eba8222b7d5ff85c0b4e101795b7c450 /share/templater/ikiwiki
parentf6851134c07c74554437db5be4abb13cafafc1b6 (diff)
downloadtemplater-ca223571c8548fda2e6571daf497482d8d236362.tar.gz
templater-ca223571c8548fda2e6571daf497482d8d236362.tar.bz2
Rename __templater_ functions to templater_
Diffstat (limited to 'share/templater/ikiwiki')
-rwxr-xr-xshare/templater/ikiwiki/setup10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/templater/ikiwiki/setup b/share/templater/ikiwiki/setup
index 68fad55..49edcd2 100755
--- a/share/templater/ikiwiki/setup
+++ b/share/templater/ikiwiki/setup
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
# Ikiwiki implementation
function templater_ikiwiki {
if [ ! -e "ikiwiki.yaml" ]; then
- __templater_echo "Setting up ikiwiki..."
+ templater_echo "Setting up ikiwiki..."
- #__templater_checkout_develop
- __templater_copy_or_append ikiwiki .gitignore
+ #templater_checkout_develop
+ templater_copy_or_append ikiwiki .gitignore
#if [ ! -e "index.md" ]; then
# cp $SHARE/ikiwiki/files/index.md .
@@ -26,7 +26,7 @@ function templater_ikiwiki {
cp $SHARE/ikiwiki/files/ikiwiki.yaml.
fi
- __templater_install_makefile $SHARE/ikiwiki/files/Makefile.ikiwiki
+ templater_install_makefile $SHARE/ikiwiki/files/Makefile.ikiwiki
if [ ! -d "templates" ]; then
cp -r $SHARE/ikiwiki/files/templates .
@@ -41,7 +41,7 @@ function templater_ikiwiki {
# git commit -a -m "Static site generation support using ikiwiki"
#fi
else
- __templater_echo "Ikiwiki already set"
+ templater_echo "Ikiwiki already set"
fi
}