The bmannconsulting.com website

Excerpts but now wikilinks

+2
_config.yml
···
smart_quotes: ["apos", "apos", "quot", "quot"]
syntax_highlighter: rouge
+
excerpt_separator: <!--more-->
+
# Build settings
theme: null
+1 -1
_pages/articles.html
···
{% unless post.tags contains "article" %}
{% break %}
{% endunless %}
-
<li id="date-content" style="padding-bottom: 0.6em; list-style: none;">Source: <a href="{{ post.link }}">{{ post.title }}</a> by {{ post.author }} Local: <a href="{{ post.url }}" class="internal-link">#</a></li>
+
<li id="date-content" style="padding-bottom: 0.6em; list-style: none;"><a href="{{ post.link }}">{{ post.title }}</a> by {{ post.author }} <a title="Local Permalink" href="{{ post.url }}" class="internal-link">#</a></li>
{% endfor %}
</ul>
{% endfor %}
+3 -4
fedica-hashtags.xml
···
{% comment %} Capture: we loop through all of the tags and make a list of hashtags separated by spaces {% endcomment %}
{% capture taglist %}{% for tag in post.tags %} #{{ tag }}{% endfor %}{% endcapture %}
{% if post.excerpt %}
-
{% assign description = post.excerpt %}
+
{% assign description = post.excerpt | markdownify | append: taglist %}
{% else %}
-
{% assign description = post.content %}
+
{% assign description = post.content | append: taglist %}
{% endif %}
-
{% assign description = description | append: taglist %}
-
<description>{{ description | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' }}</description>
+
<description>{{ description | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' }}</description>
{% if post.link %}
<link>{{ post.link | xml_escape }}</link>
{% else %}
+2 -2
journal.xml
···
{% assign sortedblog = site.journals | sort: 'date' | reverse %}
{% for post in sortedblog limit:20 %}
<item>
-
<dc:creator>{{ site.name | xml_escape }}</dc:creator>
+
<dc:creator>Boris Mann</dc:creator>
{% if post.excerpt %}
-
{% assign description = post.excerpt %}
+
{% assign description = post.excerpt | markdownify %}
{% else %}
{% assign description = post.content %}
{% endif %}