§2023-04-13
Markdown is a text-to-HTML filter; it translates an easy-to-read / easy-to-write structured text format into HTML. Markdown's text format is most similar to that of plain text email, and supports features such as headers, emphasis, code blocks, blockquotes, and links.
Read more at: https://www.commandlinux.com/man-page/man1/markdown.1.html
¶makepkg
generate by
markdown test.md>test.html
add the following
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
<style>
body {
display:flex;
min-height:100vh;
}
body >div {margin:auto;}
</style>
<body>
<div>
</div>
</body>
</html>
```
Return to Top