{"id":17337,"date":"2013-06-06T21:01:09","date_gmt":"2013-06-06T13:01:09","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=17337"},"modified":"2025-04-04T01:33:53","modified_gmt":"2025-04-03T17:33:53","slug":"web-content-with-markdown","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/","title":{"rendered":"A Guide to Writing Web Content Using Markdown"},"content":{"rendered":"<p>If you\u2019re not an <a href=\"https:\/\/www.hongkiat.com\/blog\/tag\/series-html5-css3-tuts\/\/\">HTML expert<\/a>, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling between your code editor and browser to preview the output.<\/p>\n<p>For those who write online content regularly, using <strong>Markdown<\/strong> is a more convenient option. Markdown enables you to draft your articles in <strong>plain text<\/strong>, which can later be converted into valid HTML. Plus, with the right tools, you can see the rendered output instantly.<\/p>\n<p>Interestingly, Markdown is becoming the go-to format for new publishing platforms like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ghost.org\/\">Ghost<\/a>, <a href=\"https:\/\/www.hongkiat.com\/blog\/anchor-cms\/\">AnchorCMS<\/a>, and <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/pdfbear.com\/blog\/Bloggers-at-Scriptogram-find-PDFBear-Useful\/\">ScriptoGram<\/a>. These platforms prefer Markdown because it keeps their interface clean and free from bulky <strong>WYSIWYG<\/strong> JavaScript libraries.<\/p>\n<p>In this article, we\u2019ll guide you through the Markdown format and introduce you to some tools that make writing in Markdown a breeze. Let\u2019s dive in.<\/p>\n<h2>Quick Guide to Markdown Syntax<\/h2>\n<p>Markdown uses a variety of notations to structure your content. Let\u2019s explore some of these.<\/p>\n<h3>Creating Paragraphs<\/h3>\n<p>Creating a paragraph in Markdown is straightforward. Simply write your text and press Enter to start a new paragraph. For example:<\/p>\n<pre>\r\n Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n \r\n Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n<\/pre>\n<p>This will be converted into:<\/p>\n<pre>\r\n &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.&lt;\/p&gt;\r\n \r\n &lt;p&gt;Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;\/p&gt;\r\n<\/pre>\n<h3>Formatting Text: Bold and Italic<\/h3>\n<p>You can use asterisks to format text as either bold or italic. Specifically, a single asterisk is used for <em>italic<\/em>, and double asterisks are used for <strong>bold<\/strong>.<\/p>\n<pre>\r\n *Lorem ipsum*\r\n **Lorem ipsum**\r\n<\/pre>\n<p>The above example will be rendered as:<\/p>\n<pre>\r\n &lt;em&gt;Lorem ipsum&lt;\/em&gt;\r\n &lt;strong&gt;Lorem ipsum&lt;\/strong&gt;\r\n<\/pre>\n<p>If you wish to make the text both bold and italic, you can wrap it with three asterisks, like this:<\/p>\n<pre>\r\n ***Lorem ipsum***\r\n<\/pre>\n<h3>Creating Headings<\/h3>\n<p>In Markdown, you can create headings using hash tags. A single hash tag represents a level 1 heading, two hash tags for a level 2 heading, and so on.<\/p>\n<pre>\r\n #Heading 1\r\n ##Heading 2\r\n ###Heading 3\r\n ####Heading 4\r\n #####Heading 5\r\n ######Heading 6\r\n<\/pre>\n<p>This will be converted into the following HTML tags:<\/p>\n<pre>\r\n &lt;h1&gt;Heading 1&lt;\/h1&gt;\r\n &lt;h2&gt;Heading 2&lt;\/h2&gt;\r\n &lt;h3&gt;Heading 3&lt;\/h3&gt;\r\n &lt;h4&gt;Heading 4&lt;\/h4&gt;\r\n &lt;h5&gt;Heading 5&lt;\/h5&gt;\r\n &lt;h6&gt;Heading 6&lt;\/h6&gt;\r\n<\/pre>\n<h3>Creating Lists: Ordered and Unordered<\/h3>\n<p>For unordered lists in Markdown, you can start each line with either an asterisk or a dash.<\/p>\n<pre>\r\n - this is a list item\r\n - this is another list item\r\n - this is yet another list item\r\n<\/pre>\n<p>For ordered lists, you can start each line with a number, like so:<\/p>\n<pre>\r\n 1. this is list item 1\r\n 2. this is list item 2\r\n 3. this is list item 3\r\n 4. this is list item 4\r\n 5. this is list item 5\r\n<\/pre>\n<p>You can also create nested lists by simply using spaces to indent the items.<\/p>\n<pre>\r\n 1. Hello\r\n  1.1 Nested Hello\r\n 2. Hello\r\n  2.1 Nested Hello\r\n 3. Hello\r\n<\/pre>\n<p>In HTML, these list types will be translated into <code>&lt;ul&gt;<\/code> for unordered lists and <code>&lt;ol&gt;<\/code> for ordered lists.<\/p>\n<h3>Creating Horizontal Lines<\/h3>\n<p>In Markdown, you can create horizontal lines, equivalent to the HTML <code>&lt;hr&gt;<\/code> tag, by using dashes or equal signs. Here\u2019s an example:<\/p>\n<pre>\r\n Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\r\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\r\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\r\n consequat.\r\n \r\n --------------------------------\r\n \r\n Duis aute irure dolor in reprehenderit in voluptate velit esse\r\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\r\n proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n \r\n ================================\r\n<\/pre>\n<p>The output will resemble the following:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg\" alt=\"Markdown Line Example\" width=\"500\" height=\"215\"><\/figure>\n<h3>Creating Blockquotes<\/h3>\n<p>To create a blockquote in Markdown, start each line with a <code>&gt;<\/code> sign, as shown below:<\/p>\n<pre>\r\n &gt; Duis aute irure dolor in reprehenderit in voluptate velit esse\r\n &gt; cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\r\n &gt; proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n<\/pre>\n<p>This will be wrapped in an HTML <code>&lt;blockquote&gt;<\/code> element.<\/p>\n<h3>Creating Links<\/h3>\n<p>To create a clickable text link in Markdown, wrap the text in square brackets and the URL in parentheses, like this:<\/p>\n<pre>\r\n [Hongkiat.com](https:\/\/www.hongkiat.com\/blog\/)\r\n<\/pre>\n<h3>Adding Images<\/h3>\n<p>Inserting an image in Markdown is similar to creating a text link. Start with an exclamation mark, followed by the image\u2019s alt text in square brackets and the image URL in parentheses. Here\u2019s how:<\/p>\n<pre>\r\n ![image](http:\/\/imageurl.jpg)\r\n<\/pre>\n<p>You can also include a title for the image as follows:<\/p>\n<pre>\r\n ![image](http:\/\/imageurl.jpg \"Image Title\")\r\n<\/pre>\n<h2>Markdown Limitations<\/h2>\n<p>It\u2019s important to note that Markdown\u2019s formatting syntax is designed to address issues that <strong>can be conveyed in plain text<\/strong>. As such, it doesn\u2019t support some HTML tags like <code>table<\/code>, <code>pre<\/code>, and <code>div<\/code>.<\/p>\n<h2>Top Markdown Editors<\/h2>\n<p>Here are some Markdown editors that make writing in this format a breeze:<\/p>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/mouapp.com\/\">Mou<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/mouapp.jpg\" alt=\"Mou Editor Screenshot\" width=\"500\" height=\"320\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/dillinger.io\/\">Dillinger<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/dillinger.jpg\" alt=\"Dillinger Editor Screenshot\" width=\"500\" height=\"320\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/markable.in\/\">Markable<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/markable.jpg\" alt=\"Markable Editor Screenshot\" width=\"500\" height=\"320\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/markdownpad.com\/\">Markdown Pad<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/markdown-pad.jpg\" alt=\"Markdown Pad Editor Screenshot\" width=\"500\" height=\"320\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/chrome.google.com\/webstore\/detail\/textdown\/efalomlklhakojjbdfehfkgoicablooc\">TextDown<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/textdown.jpg\" alt=\"TextDown Editor Screenshot\" width=\"500\" height=\"320\"><\/figure>","protected":false},"excerpt":{"rendered":"<p>If you\u2019re not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling between your code editor and browser to preview the output. For those who write online content regularly, using Markdown is a more convenient option. Markdown enables you to draft your articles in&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[352],"tags":[3029,4593],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>A Guide to Writing Web Content Using Markdown - Hongkiat<\/title>\n<meta name=\"description\" content=\"If you&#039;re not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Guide to Writing Web Content Using Markdown\" \/>\n<meta property=\"og:description\" content=\"If you&#039;re not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2013-06-06T13:01:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T17:33:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"A Guide to Writing Web Content Using Markdown\",\"datePublished\":\"2013-06-06T13:01:09+00:00\",\"dateModified\":\"2025-04-03T17:33:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/\"},\"wordCount\":533,\"commentCount\":25,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/web-content-with-markdown\\\/md-line.jpg\",\"keywords\":[\"Code Editors\",\"Writing Tips and Tools\"],\"articleSection\":[\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/\",\"name\":\"A Guide to Writing Web Content Using Markdown - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/web-content-with-markdown\\\/md-line.jpg\",\"datePublished\":\"2013-06-06T13:01:09+00:00\",\"dateModified\":\"2025-04-03T17:33:53+00:00\",\"description\":\"If you're not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/web-content-with-markdown\\\/md-line.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/web-content-with-markdown\\\/md-line.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/web-content-with-markdown\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Guide to Writing Web Content Using Markdown\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A Guide to Writing Web Content Using Markdown - Hongkiat","description":"If you're not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/","og_locale":"en_US","og_type":"article","og_title":"A Guide to Writing Web Content Using Markdown","og_description":"If you're not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling","og_url":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2013-06-06T13:01:09+00:00","article_modified_time":"2025-04-03T17:33:53+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"A Guide to Writing Web Content Using Markdown","datePublished":"2013-06-06T13:01:09+00:00","dateModified":"2025-04-03T17:33:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/"},"wordCount":533,"commentCount":25,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg","keywords":["Code Editors","Writing Tips and Tools"],"articleSection":["Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/","url":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/","name":"A Guide to Writing Web Content Using Markdown - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg","datePublished":"2013-06-06T13:01:09+00:00","dateModified":"2025-04-03T17:33:53+00:00","description":"If you're not an HTML expert, crafting articles directly in HTML can be cumbersome. It requires meticulous tagging for formatting and constant toggling","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/web-content-with-markdown\/md-line.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A Guide to Writing Web Content Using Markdown"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-4vD","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/17337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=17337"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/17337\/revisions"}],"predecessor-version":[{"id":73603,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/17337\/revisions\/73603"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=17337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=17337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=17337"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=17337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}