Update instructions

This commit is contained in:
2020-12-26 16:03:48 +00:00
parent bc851ccb8c
commit f8d09a76cc
4 changed files with 29 additions and 13 deletions

View File

@@ -5,8 +5,8 @@
<url> <url>
<loc>/luhn-algorithm/</loc> <loc>/luhn-algorithm/</loc>
<lastmod>2020-12-25</lastmod> <lastmod>2020-12-26</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>
@@ -15,8 +15,8 @@
<url> <url>
<loc>/site-theme/</loc> <loc>/site-theme/</loc>
<lastmod>2020-12-25</lastmod> <lastmod>2020-12-26</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>
@@ -25,8 +25,8 @@
<url> <url>
<loc>/young-reporter/</loc> <loc>/young-reporter/</loc>
<lastmod>2020-12-25</lastmod> <lastmod>2020-12-26</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>
@@ -35,8 +35,8 @@
<url> <url>
<loc>/</loc> <loc>/</loc>
<lastmod>2020-12-25</lastmod> <lastmod>2020-12-26</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>
@@ -45,8 +45,8 @@
<url> <url>
<loc>/comsci/</loc> <loc>/comsci/</loc>
<lastmod>2020-12-25</lastmod> <lastmod>2020-12-26</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>

View File

@@ -137,7 +137,8 @@
<pre><code>### My Heading <pre><code>### My Heading
* Numbered item</code></pre> 1. Numbered item
* Indented bulleted item</code></pre>
<p>will produce:</p> <p>will produce:</p>
@@ -146,6 +147,9 @@
<ol> <ol>
<li>Numbered item</li> <li>Numbered item</li>
<ul>
<li>Indented bulleted item</li>
</ul>
</ol> </ol>
</blockquote> </blockquote>
@@ -204,6 +208,7 @@ Some text.
2. **Numbered item 2** 2. **Numbered item 2**
* *Bullet 1* * *Bullet 1*
* Bullet 2 * Bullet 2
1. Numbered item 3
***Bold &amp; italics*** ***Bold &amp; italics***
@@ -233,6 +238,9 @@ A link to [Google](https://google.com).</code></pre>
<ul> <ul>
<li><i>Bullet 1</i></li> <li><i>Bullet 1</i></li>
<li>Bullet 2</li> <li>Bullet 2</li>
<ol>
<li>Numbered item 3</li>
</ol>
</ul> </ul>
<p><b><i>Bold &amp; italics</i></b></p> <p><b><i>Bold &amp; italics</i></b></p>

View File

@@ -11,7 +11,7 @@ search: exclude
<url> <url>
<loc>{{ page.url }}</loc> <loc>{{ page.url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod> <lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>daily</changefreq> <changefreq>weekly</changefreq>
<priority>0.5</priority> <priority>0.5</priority>
</url> </url>
{% endif %} {% endif %}

View File

@@ -33,7 +33,8 @@ Note the requirement for spaces after each of the above items - for example:
<pre><code>### My Heading <pre><code>### My Heading
* Numbered item</code></pre> 1. Numbered item
* Indented bulleted item</code></pre>
will produce: will produce:
@@ -42,6 +43,9 @@ will produce:
<ol> <ol>
<li>Numbered item</li> <li>Numbered item</li>
<ul>
<li>Indented bulleted item</li>
</ul>
</ol> </ol>
</blockquote> </blockquote>
@@ -97,6 +101,7 @@ Some text.
2. **Numbered item 2** 2. **Numbered item 2**
* *Bullet 1* * *Bullet 1*
* Bullet 2 * Bullet 2
1. Numbered item 3
***Bold & italics*** ***Bold & italics***
@@ -126,6 +131,9 @@ Will produce:
<ul> <ul>
<li><i>Bullet 1</i></li> <li><i>Bullet 1</i></li>
<li>Bullet 2</li> <li>Bullet 2</li>
<ol>
<li>Numbered item 3</li>
</ol>
</ul> </ul>
<p><b><i>Bold & italics</i></b></p> <p><b><i>Bold & italics</i></b></p>