<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Syntax on 我的博客</title>
        <link>https://www.newsun.cloud/categories/syntax/</link>
        <description>Recent content in Syntax on 我的博客</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>zh-cn</language>
        <lastBuildDate>Thu, 24 Mar 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://www.newsun.cloud/categories/syntax/index.xml" rel="self" type="application/rss+xml" /><item>
            <title>Using Hugo page bundles</title>
            <link>https://www.newsun.cloud/post/bundle/</link>
            <pubDate>Thu, 24 Mar 2022 00:00:00 +0000</pubDate>
            <guid>https://www.newsun.cloud/post/bundle/</guid>
            <description>&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/content-management/page-bundles/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Page bundles&lt;/a&gt; are an optional way to &lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/content-management/page-resources/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;organize page resources&lt;/a&gt; within Hugo.&lt;/p&gt;&#xA;&lt;p&gt;You can opt-in to using page bundles in Hugo Clarity with &lt;code&gt;usePageBundles&lt;/code&gt; in your site configuration or in a page&amp;rsquo;s front matter. &lt;a class=&#34;link&#34; href=&#34;https://github.com/chipzoller/hugo-clarity#organizing-page-resources&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Read more about &lt;code&gt;usePageBundles&lt;/code&gt;.&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;With page bundles, resources for a page or section, like images or attached files, live &lt;strong&gt;in the same directory as the content itself&lt;/strong&gt; rather than in your &lt;code&gt;static&lt;/code&gt; directory.&lt;/p&gt;&#xA;&lt;p&gt;Hugo Clarity supports the use of &lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/content-management/page-bundles/#leaf-bundles&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;leaf bundles&lt;/a&gt;, which are any directories within the &lt;code&gt;content&lt;/code&gt; directory that contain an &lt;code&gt;index.md&lt;/code&gt; file. Hugo&amp;rsquo;s documentation gives this example:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;content&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;├── about&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   ├── index.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;├── posts&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   ├── my-post&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   │   ├── content1.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   │   ├── content2.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   │   ├── image1.jpg&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   │   ├── image2.png&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   │   └── index.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│   └── my-other-post&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│       └── index.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;│&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;└── another-section&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    ├── ..&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    └── not-a-leaf-bundle&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        ├── ..&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        └── another-leaf-bundle&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            └── index.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;blockquote&gt;&#xA;In the above example `content` directory, there are four leaf&#xA;bundles:&#xA;&lt;p&gt;&lt;strong&gt;about&lt;/strong&gt;: This leaf bundle is at the root level (directly under&#xA;&lt;code&gt;content&lt;/code&gt; directory) and has only the &lt;code&gt;index.md&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;my-post&lt;/strong&gt;: This leaf bundle has the &lt;code&gt;index.md&lt;/code&gt;, two other content&#xA;Markdown files and two image files. &lt;strong&gt;image1&lt;/strong&gt; is a page resource of &lt;code&gt;my-post&lt;/code&gt;&#xA;and only available in &lt;code&gt;my-post/index.md&lt;/code&gt; resources. &lt;strong&gt;image2&lt;/strong&gt; is a page resource of &lt;code&gt;my-post&lt;/code&gt;&#xA;and only available in &lt;code&gt;my-post/index.md&lt;/code&gt; resources.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;my-other-post&lt;/strong&gt;: This leaf bundle has only the &lt;code&gt;index.md&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;another-leaf-bundle&lt;/strong&gt;: This leaf bundle is nested under couple of&#xA;directories. This bundle also has only the &lt;code&gt;index.md&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;The hierarchy depth at which a leaf bundle is created does not matter,&#xA;as long as it is not inside another &lt;strong&gt;leaf&lt;/strong&gt; bundle.&lt;/em&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h3 id=&#34;advantages-to-using-page-bundles&#34;&gt;&lt;a href=&#34;#advantages-to-using-page-bundles&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Advantages to using page bundles&#xA;&lt;/h3&gt;&lt;p&gt;The image below is part of the bundle of this page, and is located at &lt;code&gt;content/post/bundle/building.png&lt;/code&gt;. Because it&amp;rsquo;s within this page&amp;rsquo;s bundle, the markup for the image only has to specify the image&amp;rsquo;s filename, &lt;code&gt;building.png&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;A building&#34; class=&#34;gallery-image&#34; data-flex-basis=&#34;240px&#34; data-flex-grow=&#34;100&#34; height=&#34;200&#34; loading=&#34;lazy&#34; sizes=&#34;(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px&#34; src=&#34;https://www.newsun.cloud/post/bundle/building.png&#34; width=&#34;200&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;If you ever change the name of the directory in which this Markdown file and the image reside, the reference to the image would not need to be updated.&lt;/p&gt;&#xA;&lt;p&gt;In addition to more cleanly organizing your content and related assets, when using page bundles, &lt;strong&gt;Hugo Clarity will automatically generate markup for modern image formats&lt;/strong&gt;, which are smaller in file size.&lt;/p&gt;&#xA;&lt;p&gt;For instance, when you reference an image like &lt;code&gt;building.png&lt;/code&gt;, Hugo Clarity will check to see if the same image (based on filename) exists in &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/WebP&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;WebP&lt;/a&gt;, &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/AVIF&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;AVIF&lt;/a&gt; or &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/JPEG_XL&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;JXL&lt;/a&gt; formats. If you inspect the image above, you&amp;rsquo;ll see a &lt;code&gt;&amp;lt;source&amp;gt;&lt;/code&gt; element for &lt;code&gt;building.webp&lt;/code&gt;, because that file is also present. Hugo Clarity will only include the markup if these images exist.&lt;/p&gt;&#xA;&lt;p&gt;Browsers that &lt;a class=&#34;link&#34; href=&#34;https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture#the_type_attribute&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;support these formats and the &lt;code&gt;&amp;lt;picture&amp;gt;&lt;/code&gt; element&lt;/a&gt; will load them, while browsers that do not will fall-back to the default image. &lt;a class=&#34;link&#34; href=&#34;https://github.com/chipzoller/hugo-clarity#support-for-modern-image-formats&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Read more about this process.&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Finally, note that page assets can be further managed and refined &lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/content-management/page-resources/#page-resources-metadata&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;within the page&amp;rsquo;s front matter&lt;/a&gt; if you wish, and are not limited to images alone.&lt;/p&gt;&#xA;&lt;h3 id=&#34;disadvantages-to-using-page-bundles&#34;&gt;&lt;a href=&#34;#disadvantages-to-using-page-bundles&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Disadvantages to using page bundles&#xA;&lt;/h3&gt;&lt;p&gt;Page resources in a bundle are only available to the page with which they are bundled — that means you can&amp;rsquo;t include an image with one page and then reference it from another.&lt;/p&gt;&#xA;&lt;p&gt;Images that are being used in multiple places are more appropriate for your &lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/hugo-pipes/introduction/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;Hugo &lt;code&gt;assets&lt;/code&gt; directory&lt;/a&gt;. Unlike files in the Hugo &lt;code&gt;static&lt;/code&gt; directory, files in the &lt;code&gt;assets&lt;/code&gt; directory can be run through Hugo Pipes, which &lt;a class=&#34;link&#34; href=&#34;https://gohugo.io/content-management/image-processing/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;includes image processing&lt;/a&gt;.&lt;/p&gt;&#xA;</description>
        </item><item>
            <title>Markdown Syntax Guide</title>
            <link>https://www.newsun.cloud/post/markdown-syntax/</link>
            <pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
            <guid>https://www.newsun.cloud/post/markdown-syntax/</guid>
            <description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;&#xA;&lt;h2 id=&#34;headings&#34;&gt;&lt;a href=&#34;#headings&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Headings&#xA;&lt;/h2&gt;&lt;p&gt;The following HTML &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;—&lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; elements represent six levels of section headings. &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; is the highest section level while &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; is the lowest.&lt;/p&gt;&#xA;&lt;h1 id=&#34;h1&#34;&gt;&lt;a href=&#34;#h1&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H1&#xA;&lt;/h1&gt;&lt;h2 id=&#34;h2&#34;&gt;&lt;a href=&#34;#h2&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H2&#xA;&lt;/h2&gt;&lt;h3 id=&#34;h3&#34;&gt;&lt;a href=&#34;#h3&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H3&#xA;&lt;/h3&gt;&lt;h4 id=&#34;h4&#34;&gt;&lt;a href=&#34;#h4&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H4&#xA;&lt;/h4&gt;&lt;h5 id=&#34;h5&#34;&gt;&lt;a href=&#34;#h5&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H5&#xA;&lt;/h5&gt;&lt;h6 id=&#34;h6&#34;&gt;&lt;a href=&#34;#h6&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;H6&#xA;&lt;/h6&gt;&lt;h2 id=&#34;paragraph&#34;&gt;&lt;a href=&#34;#paragraph&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Paragraph&#xA;&lt;/h2&gt;&lt;p&gt;Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.&lt;/p&gt;&#xA;&lt;p&gt;Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.&lt;/p&gt;&#xA;&lt;h2 id=&#34;images&#34;&gt;&lt;a href=&#34;#images&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Images&#xA;&lt;/h2&gt;&lt;h3 id=&#34;local-image-alt-text-as-caption&#34;&gt;&lt;a href=&#34;#local-image-alt-text-as-caption&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Local image, alt text as caption&#xA;&lt;/h3&gt;&lt;p&gt;The following image is located within the Hugo site. Because it has alt text but no title text, the caption is generated by the alt text.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;Jane Doe&#34; loading=&#34;lazy&#34; sizes=&#34;(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px&#34;&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;remote-image-specified-caption&#34;&gt;&lt;a href=&#34;#remote-image-specified-caption&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Remote image, specified caption&#xA;&lt;/h3&gt;&lt;p&gt;The following image is loaded from a remote URL. The alt text is the same (for screen readers and in cases when the image doesn&amp;rsquo;t load) but because a separate title is provided, the title is used for the caption:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;Jane Doe&#34; class=&#34;gallery-image&#34; data-flex-basis=&#34;240px&#34; data-flex-grow=&#34;100&#34; data-title-escaped=&#34;This is Jane Doe&#34; height=&#34;512&#34; loading=&#34;lazy&#34; sizes=&#34;(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px&#34; src=&#34;https://raw.githubusercontent.com/chipzoller/hugo-clarity/master/exampleSite/static/images/jane-doe.png&#34; title=&#34;This is Jane Doe&#34; width=&#34;512&#34;&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;image-with-alt-text-and-no-caption&#34;&gt;&lt;a href=&#34;#image-with-alt-text-and-no-caption&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Image with alt text and no caption&#xA;&lt;/h3&gt;&lt;p&gt;Alt text is always recommended for SEO, accessibility and in cases when images don&amp;rsquo;t load. However, you don&amp;rsquo;t necessarily always want an image to have a caption. In that case, use a title with one space:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;A building&#34; loading=&#34;lazy&#34; sizes=&#34;(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px&#34;&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;blockquotes&#34;&gt;&lt;a href=&#34;#blockquotes&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Blockquotes&#xA;&lt;/h2&gt;&lt;p&gt;The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a &lt;code&gt;footer&lt;/code&gt; or &lt;code&gt;cite&lt;/code&gt; element, and optionally with in-line changes such as annotations and abbreviations.&lt;/p&gt;&#xA;&lt;h4 id=&#34;blockquote-without-attribution&#34;&gt;&lt;a href=&#34;#blockquote-without-attribution&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Blockquote without attribution&#xA;&lt;/h4&gt;&#xA;    &lt;blockquote&gt;&#xA;        &lt;p&gt;Tiam, ad mint andaepu dandae nostion secatur sequo quae.&#xA;&lt;strong&gt;Note&lt;/strong&gt; that you can use &lt;em&gt;Markdown syntax&lt;/em&gt; within a blockquote.&lt;/p&gt;&#xA;&#xA;    &lt;/blockquote&gt;&#xA;&lt;h4 id=&#34;blockquote-with-attribution&#34;&gt;&lt;a href=&#34;#blockquote-with-attribution&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Blockquote with attribution&#xA;&lt;/h4&gt;&#xA;    &lt;blockquote&gt;&#xA;        &lt;p&gt;Don&amp;rsquo;t communicate by sharing memory, share memory by communicating.&lt;br&gt;&#xA;— &lt;cite&gt;Rob Pike&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/cite&gt;&lt;/p&gt;&#xA;&#xA;    &lt;/blockquote&gt;&#xA;&lt;h2 id=&#34;tables&#34;&gt;&lt;a href=&#34;#tables&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Tables&#xA;&lt;/h2&gt;&lt;p&gt;Tables aren&amp;rsquo;t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;&#x9;&lt;thead&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Name&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Age&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/thead&gt;&#xA;&#x9;&lt;tbody&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;Bob&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;27&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;Alice&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;23&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h4 id=&#34;inline-markdown-within-tables&#34;&gt;&lt;a href=&#34;#inline-markdown-within-tables&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Inline Markdown within tables&#xA;&lt;/h4&gt;&lt;table&gt;&#xA;&#x9;&lt;thead&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Italics&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Bold&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;th&gt;Code&lt;/th&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/thead&gt;&#xA;&#x9;&lt;tbody&gt;&#xA;&#x9;&#x9;&#x9;&lt;tr&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;em&gt;italics&lt;/em&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;strong&gt;bold&lt;/strong&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&lt;td&gt;&lt;code&gt;code&lt;/code&gt;&lt;/td&gt;&#xA;&#x9;&#x9;&#x9;&lt;/tr&gt;&#xA;&#x9;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h2 id=&#34;code-blocks&#34;&gt;&lt;a href=&#34;#code-blocks&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Code Blocks&#xA;&lt;/h2&gt;&lt;h4 id=&#34;code-block-with-backticks&#34;&gt;&lt;a href=&#34;#code-block-with-backticks&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Code block with backticks&#xA;&lt;/h4&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;cp&#34;&gt;&amp;lt;!doctype html&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;html&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;lang&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;en&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;head&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;meta&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;charset&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;utf-8&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;Example HTML5 Document&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;head&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;body&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;p&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;Test&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;p&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;body&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c&#34;&gt;&amp;lt;!-- this line is extraneous 2Error from server (Forbidden): deployments.apps is forbidden: User &amp;#34;chiptest&amp;#34; cannot create resource &amp;#34;deployments&amp;#34; in API group &amp;#34;apps&amp;#34; in the namespace &amp;#34;default&amp;#34; --&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;html&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&#34;code-block-indented-with-four-spaces&#34;&gt;&lt;a href=&#34;#code-block-indented-with-four-spaces&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Code block indented with four spaces&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;!doctype html&amp;gt;&#xA;&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&#xA;&amp;lt;head&amp;gt;&#xA;  &amp;lt;meta charset=&amp;quot;utf-8&amp;quot;&amp;gt;&#xA;  &amp;lt;title&amp;gt;Example HTML5 Document&amp;lt;/title&amp;gt;&#xA;&amp;lt;/head&amp;gt;&#xA;&amp;lt;body&amp;gt;&#xA;  &amp;lt;p&amp;gt;Test&amp;lt;/p&amp;gt;&#xA;&amp;lt;/body&amp;gt;&#xA;&amp;lt;/html&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h4 id=&#34;code-block-with-hugos-internal-highlight-shortcode&#34;&gt;&lt;a href=&#34;#code-block-with-hugos-internal-highlight-shortcode&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Code block with Hugo&amp;rsquo;s internal highlight shortcode&#xA;&lt;/h4&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;cp&#34;&gt;&amp;lt;!doctype html&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;html&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;lang&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;en&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;head&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;meta&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;charset&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;utf-8&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;Example HTML5 Document&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;head&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;body&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;p&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;Test&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;p&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;body&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;html&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&#xA;&lt;h2 id=&#34;list-types&#34;&gt;&lt;a href=&#34;#list-types&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;List Types&#xA;&lt;/h2&gt;&lt;h4 id=&#34;ordered-list&#34;&gt;&lt;a href=&#34;#ordered-list&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Ordered List&#xA;&lt;/h4&gt;&lt;ol&gt;&#xA;&lt;li&gt;First item&lt;/li&gt;&#xA;&lt;li&gt;Second item&lt;/li&gt;&#xA;&lt;li&gt;Third item&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h4 id=&#34;unordered-list&#34;&gt;&lt;a href=&#34;#unordered-list&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Unordered List&#xA;&lt;/h4&gt;&lt;ul&gt;&#xA;&lt;li&gt;List item&lt;/li&gt;&#xA;&lt;li&gt;Another item&lt;/li&gt;&#xA;&lt;li&gt;And another item&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h4 id=&#34;nested-list&#34;&gt;&lt;a href=&#34;#nested-list&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Nested list&#xA;&lt;/h4&gt;&lt;ul&gt;&#xA;&lt;li&gt;Fruit&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Apple&lt;/li&gt;&#xA;&lt;li&gt;Orange&lt;/li&gt;&#xA;&lt;li&gt;Banana&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Dairy&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Milk&lt;/li&gt;&#xA;&lt;li&gt;Cheese&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;other-elements--abbr-sub-sup-kbd-mark&#34;&gt;&lt;a href=&#34;#other-elements--abbr-sub-sup-kbd-mark&#34; class=&#34;header-anchor&#34;&gt;&lt;/a&gt;Other Elements — abbr, sub, sup, kbd, mark&#xA;&lt;/h2&gt;&lt;p&gt;&lt;abbr title=&#34;Graphics Interchange Format&#34;&gt;GIF&lt;/abbr&gt; is a bitmap image format.&lt;/p&gt;&#xA;&lt;p&gt;H&lt;sub&gt;2&lt;/sub&gt;O&lt;/p&gt;&#xA;&lt;p&gt;X&lt;sup&gt;n&lt;/sup&gt; + Y&lt;sup&gt;n&lt;/sup&gt; = Z&lt;sup&gt;n&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;p&gt;Press &lt;kbd&gt;&lt;kbd&gt;CTRL&lt;/kbd&gt;+&lt;kbd&gt;ALT&lt;/kbd&gt;+&lt;kbd&gt;Delete&lt;/kbd&gt;&lt;/kbd&gt; to end the session.&lt;/p&gt;&#xA;&lt;p&gt;Most &lt;mark&gt;salamanders&lt;/mark&gt; are nocturnal, and hunt for insects, worms, and other small creatures.&lt;/p&gt;&#xA;&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;&#xA;&lt;hr&gt;&#xA;&lt;ol&gt;&#xA;&lt;li id=&#34;fn:1&#34;&gt;&#xA;&lt;p&gt;The above quote is excerpted from Rob Pike&amp;rsquo;s &lt;a class=&#34;link&#34; href=&#34;https://www.youtube.com/watch?v=PAAkCSZUG1c&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;&#xA;    &gt;talk&lt;/a&gt; during Gopherfest, November 18, 2015.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;</description>
        </item></channel>
</rss>
