summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/blog/util/Indent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/blog/util/Indent.kt')
-rw-r--r--src/main/kotlin/moe/nea/blog/util/Indent.kt5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/blog/util/Indent.kt b/src/main/kotlin/moe/nea/blog/util/Indent.kt
new file mode 100644
index 0000000..5a61a48
--- /dev/null
+++ b/src/main/kotlin/moe/nea/blog/util/Indent.kt
@@ -0,0 +1,5 @@
+package moe.nea.blog.util
+
+fun Appendable.indent(indent: Int) {
+ append(" ".repeat(indent))
+} \ No newline at end of file