Too many updates to cover

This commit is contained in:
Jeffrey Stone
2019-07-13 21:38:53 -04:00
parent 328ecf126c
commit d90380cc65
73 changed files with 1108 additions and 1171 deletions

6
templates/jarvis_interuptions.yaml Normal file → Executable file
View File

@@ -1,5 +1,5 @@
>
{% macro getInteruption() %}
{% macro getIntro() %}
{{ [
"Pardon me,",
"Excuse me,",
@@ -7,6 +7,8 @@
"I thought you might like to know."
] | random }}
{% endmacro %}
{# a macro that removes all newline characters, empty spaces, and returns formatted text #}
{%- macro cleanup(data) -%}
{%- for item in data.split("\n") if item | trim != "" -%}
@@ -15,7 +17,7 @@
{# a macro to call all macros :) #}
{%- macro mother_of_all_macros() -%}
{{ getInteruption() }}
{{ getIntro() }}
{%- endmacro -%}