diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 588b751..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*
-!**/**/
-!**/**/*.py
-!**/**/*.json
-!**/**/README.md
-**/**/__pycache
\ No newline at end of file
diff --git a/python/markdown/markdown.py b/python/markdown/markdown.py
index 2e32eca..cdea006 100644
--- a/python/markdown/markdown.py
+++ b/python/markdown/markdown.py
@@ -14,7 +14,7 @@ def parse(markdown):
line = '
' + line[2:] + '
'
m = re.match(r'\* (.*)', line)
if m:
- in_list, is_bold, is_italic = not in_list, False, False
+ in_list, is_bold, is_italic = True, False, False
current_line = m.group(1)
# Bold
strongmatch = re.match('(.*)__(.*)__(.*)', current_line)
@@ -29,7 +29,7 @@ def parse(markdown):
'' + italicmatch.group(3)
is_italic = True
- line = '- ' + current_line + '
' if not in_list else '- ' + current_line + '
'
+ line = '' if not in_list else '- ' + current_line + '
'
else:
if in_list:
in_list_append = True
diff --git a/python/markdown/tempCodeRunnerFile.py b/python/markdown/tempCodeRunnerFile.py
deleted file mode 100644
index 61f3d04..0000000
--- a/python/markdown/tempCodeRunnerFile.py
+++ /dev/null
@@ -1 +0,0 @@
-i
\ No newline at end of file