Add installation instruction file;
Order directories.
This commit is contained in:
parent
766e51af4c
commit
3ac005708d
49 changed files with 61 additions and 0 deletions
11
rivista/markdown/html.py
Normal file
11
rivista/markdown/html.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import markdown
|
||||
|
||||
class MarkdownHtml:
|
||||
|
||||
def convert_to_html(markdown_content):
|
||||
# Convert Markdown to HTML
|
||||
html_content = markdown.markdown(markdown_content)
|
||||
return html_content
|
Loading…
Add table
Add a link
Reference in a new issue