diff --git a/src/js_thread.ml b/src/js_thread.ml index 8255c01..9020314 100644 --- a/src/js_thread.ml +++ b/src/js_thread.ml @@ -10,7 +10,7 @@ let insert_quote post_id = let content = Jv.get comment_textarea "value" in let new_content = Jv.call content "concat" - [| Jv.of_string " >>"; post_id; Jv.of_string " " |] + [| Jv.of_string "\n>>"; post_id; Jv.of_string " " |] in ignore @@ Jv.set comment_textarea "value" new_content; Jv.undefined