https://github.com/nagipragalathan/x3site
https://github.com/nagipragalathan/x3site
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nagipragalathan/x3site
- Owner: NagiPragalathan
- Created: 2024-03-30T19:10:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-31T03:30:25.000Z (over 1 year ago)
- Last Synced: 2025-02-18T04:52:11.630Z (8 months ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.html
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;
}