diff --git a/source/test/code/markdown/index.markdown b/source/test/code/markdown/index.markdown index 784349c..7e3e39b 100644 --- a/source/test/code/markdown/index.markdown +++ b/source/test/code/markdown/index.markdown @@ -17,3 +17,13 @@ sidebar: false foo && bar module.exports = Tweets ``` + +{% codeblock Append this to your .bashrc file. %} +echo "User .bashrc..." +for i in ~/.env/*.sh ; do +if [ -r "$i" ]; then +. $i +fi +done +unset i +{% endcodeblock %}