aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ao_defaults.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-01-30 14:19:27 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit648492549fc290c416d870040c9097cc53335d44 (patch)
tree2f6b7f4b2cf6ae31fea4ca9f94b4b80f0445b42a /org/ao_defaults.org
parentorg file reorganise (diff)
screen output
Diffstat (limited to 'org/ao_defaults.org')
-rw-r--r--org/ao_defaults.org4
1 files changed, 4 insertions, 0 deletions
diff --git a/org/ao_defaults.org b/org/ao_defaults.org
index 908a449..b2604ac 100644
--- a/org/ao_defaults.org
+++ b/org/ao_defaults.org
@@ -744,6 +744,10 @@ template InternalMarkup() {
_indent_spaces = replicate(_indent_spaces, indent);
return _indent_spaces;
}
+ string repeat_character_by_number_provided(C,N)(C _character ="-", N number=10) {
+ _character = replicate(_character, number);
+ return _character;
+ }
}
}
#+END_SRC