{"id":72,"date":"2020-05-27T17:51:19","date_gmt":"2020-05-27T08:51:19","guid":{"rendered":"https:\/\/speedloger.com\/?p=72"},"modified":"2020-06-02T12:39:08","modified_gmt":"2020-06-02T03:39:08","slug":"markdown%e3%83%95%e3%82%a9%e3%83%bc%e3%83%9e%e3%83%83%e3%83%88%e3%83%86%e3%82%b9%e3%83%88","status":"publish","type":"post","link":"https:\/\/speedloger.com\/?p=72","title":{"rendered":"Markdown\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u30c6\u30b9\u30c8"},"content":{"rendered":"<p>\u3053\u308c\u306f\u30e1\u30e2\u306e\u4f8b\u3067\u3059\u3002<br \/>\n<a href=\"http:\/\/doc.inkdrop.info\/manual\/markdown-cheatsheet\">GitHub-flavored Markdown<\/a>.\u3067\u30e1\u30e2\u3092\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059<\/p>\n<h1>\u30d8\u30c3\u30c0<\/h1>\n<h2>Markdown<\/h2>\n<pre><code># H1\n## H2\n### H3\n#### H4\n##### H5\n###### H6<\/code><\/pre>\n<h2>\u51fa\u529b<\/h2>\n<h1>H1<\/h1>\n<h2>H2<\/h2>\n<h3>H3<\/h3>\n<h4>H4<\/h4>\n<h5>H5<\/h5>\n<h6>H6<\/h6>\n<h2>Emphasis<\/h2>\n<p>Emphasis, aka italics, with <em>asterisks<\/em> or <em>underscores<\/em>.<\/p>\n<p>Strong emphasis, aka bold, with <strong>asterisks<\/strong> or <strong>underscores<\/strong>.<\/p>\n<p>Combined emphasis with <strong>asterisks and <em>underscores<\/em><\/strong>.<\/p>\n<p>Strikethrough uses two tildes. <del>Scratch this.<\/del><\/p>\n<h2>Lists<\/h2>\n<ol>\n<li>First ordered list item<\/li>\n<li>Another item\n<ul>\n<li>Unordered sub-list.<\/li>\n<\/ul>\n<\/li>\n<li>Actual numbers don't matter, just that it's a number\n<ol>\n<li>Ordered sub-list<\/li>\n<\/ol>\n<\/li>\n<li>\nAnd another item.<\/p>\n<p>You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).<\/p>\n<p>To have a line break without a paragraph, you will need to use two trailing spaces.<br \/>\nNote that this line is separate, but within the same paragraph.<br \/>\n(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)\n<\/li>\n<\/ol>\n<ul>\n<li>Unordered list can use asterisks<\/li>\n<li>Or minuses<\/li>\n<li>Or pluses<\/li>\n<\/ul>\n<h2>Links<\/h2>\n<p><a href=\"https:\/\/www.google.com\">I'm an inline-style link<\/a><\/p>\n<p><a href=\"https:\/\/www.google.com\" title=\"Google&#039;s Homepage\">I'm an inline-style link with title<\/a><\/p>\n<p><a href=\"https:\/\/www.mozilla.org\">I'm a reference-style link<\/a><\/p>\n<p><a href=\"http:\/\/slashdot.org\">You can use numbers for reference-style link definitions<\/a><\/p>\n<p>Or leave it empty and use the <a href=\"http:\/\/www.reddit.com\">link text itself<\/a>.<\/p>\n<p>URLs and URLs in angle brackets will automatically get turned into links.<br \/>\n<a href=\"http:\/\/www.example.com\">http:\/\/www.example.com<\/a> or <a href=\"http:\/\/www.example.com\">http:\/\/www.example.com<\/a> and sometimes<br \/>\nexample.com (but not on Github, for example).<\/p>\n<p>Some text to show that the reference links can follow later.<\/p>\n<h2>Images<\/h2>\n<p>Here's our logo (hover to see the title text):<\/p>\n<p>Inline-style:<br \/>\n<img src=\"https:\/\/i0.wp.com\/github.com\/adam-p\/markdown-here\/raw\/master\/src\/common\/images\/icon48.png?w=900&#038;ssl=1\" alt=\"alt text\" title=\"Logo Title Text 1\" data-recalc-dims=\"1\" \/><\/p>\n<p>Reference-style:<br \/>\n<img src=\"https:\/\/i0.wp.com\/github.com\/adam-p\/markdown-here\/raw\/master\/src\/common\/images\/icon48.png?w=900&#038;ssl=1\" alt=\"alt text\" title=\"Logo Title Text 2\" data-recalc-dims=\"1\" \/><\/p>\n<h2>Code and Syntax Highlighting<\/h2>\n<p>Inline <code>code<\/code> has <code>back-ticks around<\/code> it.<\/p>\n<pre><code class=\"language-javascript\">var s = &quot;JavaScript syntax highlighting&quot;;\nalert(s);<\/code><\/pre>\n<pre><code class=\"language-python\">s = &quot;Python syntax highlighting&quot;\nprint s<\/code><\/pre>\n<pre><code>No language indicated, so no syntax highlighting. <\/code><\/pre>\n<h2>Tables<\/h2>\n<p>Colons can be used to align columns.<\/p>\n<table>\n<thead>\n<tr>\n<th>Tables<\/th>\n<th style=\"text-align: center;\">Are<\/th>\n<th style=\"text-align: right;\">Cool<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>col 3 is<\/td>\n<td style=\"text-align: center;\">right-aligned<\/td>\n<td style=\"text-align: right;\">$1600<\/td>\n<\/tr>\n<tr>\n<td>col 2 is<\/td>\n<td style=\"text-align: center;\">centered<\/td>\n<td style=\"text-align: right;\">$12<\/td>\n<\/tr>\n<tr>\n<td>zebra stripes<\/td>\n<td style=\"text-align: center;\">are neat<\/td>\n<td style=\"text-align: right;\">$1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>There must be at least 3 dashes separating each header cell.<br \/>\nThe outer pipes (|) are optional, and you don't need to make the<br \/>\nraw Markdown line up prettily. You can also use inline Markdown.<\/p>\n<table>\n<thead>\n<tr>\n<th>Markdown<\/th>\n<th>Less<\/th>\n<th>Pretty<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><em>Still<\/em><\/td>\n<td><code>renders<\/code><\/td>\n<td><strong>nicely<\/strong><\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>2<\/td>\n<td>3<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Blockquotes<\/h2>\n<blockquote><p>\nBlockquotes are very handy in email to emulate reply text.<br \/>\nThis line is part of the same quote.\n<\/p><\/blockquote>\n<p>Quote break.<\/p>\n<blockquote><p>\nThis is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can <em>put<\/em> <strong>Markdown<\/strong> into a blockquote.\n<\/p><\/blockquote>\n<h2>Horizontal Rule<\/h2>\n<p>Three or more...<\/p>\n<hr \/>\n<p>Hyphens<\/p>\n<hr \/>\n<p>Asterisks<\/p>\n<hr \/>\n<p>Underscores<\/p>\n<h2>Line Breaks<\/h2>\n<p>Here's a line for us to start with.<\/p>\n<p>This line is separated from the one above by two newlines, so it will be a <em>separate paragraph<\/em>.<\/p>\n<p>This line is also a separate paragraph, but...<br \/>\nThis line is only separated by a single newline, so it's a separate line in the <em>same paragraph<\/em>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u308c\u306f\u30e1\u30e2\u306e\u4f8b\u3067\u3059\u3002 GitHub-flavored Markdown.\u3067\u30e1\u30e2\u3092\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059 \u30d8\u30c3\u30c0 Markdown # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 \u51fa\u529b&#8230; &raquo; <a class=\"read-more-link\" href=\"https:\/\/speedloger.com\/?p=72\">read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":77,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":""},"categories":[6],"tags":[10,13],"aioseo_notices":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1","uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,false],"thumbnail":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?resize=150%2C100&ssl=1",150,100,true],"medium":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,true],"medium_large":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,true],"large":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,true],"1536x1536":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,true],"2048x2048":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?fit=290%2C100&ssl=1",290,100,true],"mynote-thumbnail":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?resize=290%2C100&ssl=1",290,100,true],"mynote-medium":["https:\/\/i0.wp.com\/speedloger.com\/wp-content\/uploads\/2020\/05\/Untitled.png?resize=290%2C100&ssl=1",290,100,true]},"uagb_author_info":{"display_name":"\u7ba1\u7406\u30a2\u30ab\u30a6\u30f3\u30c8","author_link":"https:\/\/speedloger.com\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"\u3053\u308c\u306f\u30e1\u30e2\u306e\u4f8b\u3067\u3059\u3002 GitHub-flavored Markdown.\u3067\u30e1\u30e2\u3092\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059 \u30d8\u30c3\u30c0 M&hellip;","_links":{"self":[{"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/posts\/72"}],"collection":[{"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/speedloger.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=72"}],"version-history":[{"count":0,"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/posts\/72\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/speedloger.com\/index.php?rest_route=\/wp\/v2\/media\/77"}],"wp:attachment":[{"href":"https:\/\/speedloger.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=72"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/speedloger.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=72"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/speedloger.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=72"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}