summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-06-15 12:44:14 +0530
committerAndinus <andinus@nand.sh>2021-06-15 12:44:14 +0530
commit2e8123b1c76df4f9e8feb1b78863a1c8f4f96644 (patch)
tree26e107a1fe6176e047da4165974fbffa5ca089d3
parent160767a12d39ec1dc69c58802b32ab18cecab0b2 (diff)
downloaddraco-2e8123b1c76df4f9e8feb1b78863a1c8f4f96644.tar.gz
Tiny format change
Looks prettier.
-rwxr-xr-xdraco.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/draco.pl b/draco.pl
index 37017f0..4dddcad 100755
--- a/draco.pl
+++ b/draco.pl
@@ -372,11 +372,11 @@ sub print_comment_chain {
     }
     print ":END:\n";
 
-    print "\n#+BEGIN_SRC markdown\n",
+    print "\n#+begin_src markdown\n",
         # Break the text at 76 column & add 2 space before every new
         # line.
         "  ", $lb->break($comment_data->{body}) =~ s/\n/\n\ \ /gr, "\n",
-        "#+END_SRC\n";
+        "#+end_src\n\n";
 
     # If the comment has replies then iterate over those too.
     if (scalar $comment_data->{replies}) {