/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
markdown__examples/hello_world.py
16 строк
381 B
gil9red
Refactoring. Using black code style
30 май 2023, 14:54
30 май 2023, 14:54
c50b168
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # pip install markdown import markdown text_markdown = """ *Hello* **[World](https://ru.wikipedia.org/wiki/Hello,_world!)**! """.strip() text_html = markdown.markdown(text_markdown) print(text_html) # <p><em>Hello</em> <strong><a href="https://ru.wikipedia.org/wiki/Hello,_world!">World</a></strong>!</p>