An open API service indexing awesome lists of open source software.

https://github.com/nagipragalathan/x3site


https://github.com/nagipragalathan/x3site

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          



Markdown to HTML Converter


Convert to HTML


function convertMarkdown() {
// Get the Markdown content from the textarea
var markdownContent = document.getElementById('markdownContent').value;

// Create a new instance of Showdown converter
var converter = new showdown.Converter();

// Convert Markdown to HTML using showdown.js
var htmlContent = converter.makeHtml(markdownContent);

// Display the HTML content
document.getElementById('htmlContent').innerHTML = htmlContent;
}