1423 gün önce Web Gelistirmek icin PHP mi Yoksa C# hangisi daha tercih ederler?
sorusunu cevapladı.
c# web geliştirme için çok uygun değil php daha iyi
1423 gün önce Markdown editörünü kullanımı
sorusunu cevapladı.
parser da yapman lazım onun için şöyle bir tane kod buldum
function parseMarkdown(markdownText) {
const htmlText = markdownText
.replace(/^### (.*$)/gim, '<h3>$1</h3>')
.replace(/^## (.*$)/gim, '<h2>$1</h2>')
.replace(/^# (.*$)/gim, '<h1>$1</h1>')
.replace(/^> (.*$)/gim, '<blockquote>$1</blockquote>')
.replace(/**(.*)**/gim, '<b>$1</b>')
.replace(/*(.*)*/gim, '<i>$1</i>')
.replace(/![(.*?)]((.*?))/gim, "<img alt='$1' src='$2' />")
.replace(/[(.*?)]((.*?))/gim, "<a href='$2'>$1</a>")
.replace(/n$/gim, '<br />')
return htmlText.trim()
}