diff --git a/markdown.php b/markdown.php
index 844cfd7..7a40cf9 100644
--- a/markdown.php
+++ b/markdown.php
@@ -1,6 +1,62 @@
-';
+ $lv ++;
+ }
+ while ( $lv > $nlv ) {
+ $text .= '';
+ $lv --;
+ }
+ }
+ if (startsWith ( $t, '!!!!! ' )) {
+ $t = '
' . substr ( $t, 6 ) . '
';
+ }
+ if (startsWith ( $t, '!!!! ' )) {
+ $t = '' . substr ( $t, 5 ) . '
';
+ }
+ if (startsWith ( $t, '!!! ' )) {
+ $t = '' . substr ( $t, 4 ) . '
';
+ }
+ if (startsWith ( $t, '!! ' )) {
+ $t = '' . substr ( $t, 3 ) . '
';
+ }
+ if (startsWith ( $t, '! ' )) {
+ $t = '' . substr ( $t, 2 ) . '
';
+ }
+ if ($lv == 0) {
+ $text .= $t;
+ } else {
+ $text .= '' . $t . '';
+ }
+ // var_dump ( $t );
+ }
+ while ( $lv > 0 ) {
+ $text .= '';
+ $lv --;
+ }
+ return $text;
+}
?>
\ No newline at end of file