Spaces:
Sleeping
Sleeping
File size: 521 Bytes
080146c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import re
# =====================================
# Funzioni relative al Markdown
# =====================================
def clean_markdown(text):
"""Rimuove markdown dal testo"""
text = re.sub(r'```[\s\S]*?```', '', text) # blocchi codice
text = re.sub(r'`.*?`', '', text) # codice inline
text = re.sub(r'\[([^\]]+)\]\([^\)]+\)', r'\1', text) # link
text = re.sub(r'\*\*(.*?)\*\*', r'\1', text) # bold
text = re.sub(r'\*(.*?)\*', r'\1', text) # italic
return text.strip() |