markdown.html (3290B)
1 <!DOCTYPE html> 2 <html dir="ltr" lang="en"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 5 <meta http-equiv="Content-Language" content="en" /> 6 <meta name="viewport" content="width=device-width" /> 7 <meta name="keywords" content="blog, git, dev-log, life-log" /> 8 <meta name="description" content="What Markdown is and why it is superior" /> 9 <meta name="author" content="linusbehrens" /> 10 <meta name="generator" content="saait (https://git.codemadness.org/saait/file/README.html)" /> 11 <title>Markdown - Linus Blog</title> 12 13 <link rel="preconnect" href="https://rsms.me/"> 14 <link rel="stylesheet" href="https://rsms.me/inter/inter.css"> 15 <link rel="preconnect" href="https://fonts.googleapis.com"> 16 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 17 <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap" rel="stylesheet"> 18 19 <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> 20 <link rel="stylesheet" href="typeface.css" type="text/css" media="screen" /> 21 <link rel="stylesheet" href="print.css" type="text/css" media="print" /> 22 23 <link rel="alternate" href="atom.xml" type="application/atom+xml" title="Linus Blog Atom Feed" /> 24 <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="Linus Blog Atom Feed with content" /> 25 <link rel="icon" href="/favicon.png" type="image/png" /> 26 </head> 27 <body> 28 <nav id="menuwrap"> 29 <table id="menu" width="100%" border="0"> 30 <tr> 31 <td id="links" align="left"> 32 <a href="index.html">Blog</a> | 33 <a href="/git/" title="Git repository with some of my projects">Git</a> <!-- | --> 34 <!-- <a href="/releases/">Releases</a> | --> 35 <!-- <a href="gopher://codemadness.org">Gopherhole</a> --> 36 </td> 37 <td id="links-contact" align="right"> 38 <span class="hidden"> | </span> 39 <!-- <a href="feeds.html">Feeds</a> | --> 40 <a href="pgp.asc">PGP</a> | 41 <a href="mailto:mail@linus-behrens.de">Mail</a> 42 </td> 43 </tr> 44 </table> 45 </nav> 46 <hr class="hidden" /> 47 <main id="mainwrap"> 48 <div id="main"> 49 <article> 50 <header> 51 <h1>Markdown</h1> 52 <p> 53 <strong>Last modification on </strong> <time>2025-04-12</time> 54 </p> 55 </header> 56 57 <ul> 58 <li><strong>Free plain text:</strong> With plain text you enter the 59 world of unbordered choosing of you editor. You are not forced to use a 60 proprietary editor like Microsoft Word or Apple Pages.</li> 61 <li><strong>Light weight:</strong> A empty file has: <code>0 Bit</code> 62 and this <code>.md</code>-based file has</li> 63 <li><strong>Simple formatting:</strong> With the formatting characters 64 of Markdown files you are able to simply change your paragraph to a 65 title, (sub-) heading or list. No more searching of the setting in your 66 editor – just put a <code>#</code> (title) in front of you 67 paragraph.</li> 68 <li><strong>Conversion:</strong> With tools like <code>pandoc</code> you 69 can easily change your <code>.md</code> files to a <code>.tex</code> 70 version with the same formatting.</li> 71 <li><strong>Flavours:</strong> Fully compatible versions of Markdown 72 with for example wiki-link functionality.</li> 73 <li><strong>Backups:</strong> Easy versioning with git</li> 74 </ul> 75 <p>Tell me, what else do you want?</p> 76 77 </article> 78 </div> 79 </main> 80 </body> 81 </html>