Skip to content

Instantly share code, notes, and snippets.

View brkalow's full-sized avatar
:bowtie:

Bryce Kalow brkalow

:bowtie:
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #f2f2f2;
}
@brkalow
brkalow / index.html
Last active October 18, 2022 15:03
HTML to Markdown
<html>
<head>
<script src="https://unpkg.com/turndown/dist/turndown.js"></script>
<script src="https://unpkg.com/turndown-plugin-gfm/dist/turndown-plugin-gfm.js"></script>
</head>
<body>
<h1>Convert HTML to MD</h1>
<textarea id="text"> </textarea>
<button id="convert">Convert to MD (copies to clipboard)</button>
<script type="text/javascript">