summaryrefslogtreecommitdiff
path: root/editor/editor.css
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor.css')
-rw-r--r--editor/editor.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/editor/editor.css b/editor/editor.css
index 8f29bde..fb58773 100644
--- a/editor/editor.css
+++ b/editor/editor.css
@@ -324,3 +324,39 @@ li.ProseMirror-selectednode:after {
}
.ProseMirror p { margin-bottom: 1em }
+
+.editor em::before, .editor em::after {
+ content: "//"
+}
+
+.editor blockquote p::before {
+ content: "> "
+}
+
+.editor strong::before, .editor strong::after {
+ content: "**"
+}
+
+.editor h1::before {
+ content: "# "
+}
+
+.editor h2::before {
+ content: "## "
+}
+
+.editor h3::before {
+ content: "### "
+}
+
+.editor h4::before {
+ content: "#### "
+}
+
+.editor h5::before {
+ content: "##### "
+}
+
+.editor h6::before {
+ content: "###### "
+}