We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5cb64 commit b059dfbCopy full SHA for b059dfb
src/Common/EmphasisLevel.php
@@ -0,0 +1,16 @@
1
+<?php
2
+
3
+namespace Markdom\Common;
4
5
+/**
6
+ * Class EmphasisLevel
7
+ *
8
+ * @package Markdom\Common
9
+ */
10
+class EmphasisLevel
11
+{
12
13
+ const LEVEL_1 = 'LEVEL_1';
14
+ const LEVEL_2 = 'LEVEL_2';
15
16
+}
src/Common/HeadingLevel.php
@@ -0,0 +1,20 @@
+ const LEVEL_3 = 'LEVEL_3';
+ const LEVEL_4 = 'LEVEL_4';
17
+ const LEVEL_5 = 'LEVEL_5';
18
+ const LEVEL_6 = 'LEVEL_6';
19
20
0 commit comments