<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="https://edmar.sh/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Ed Marsh</title>
    <link>https://edmar.sh/</link>
    <atom:link href="https://edmar.sh/feed.xml" rel="self" type="application/rss+xml" />
    <description>Technical communicator, content strategist, mentor, podcaster</description>
    <language>en</language>
    <item>
      <title>Content Content Podcast: The people behind the content</title>
      <link>https://edmar.sh/podcasts/</link>
      <description></description>
      <pubDate>Mon, 22 Jun 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/</guid>
    </item>
    <item>
      <title>Discuss technical communication, content strategy, mentorship, and podcasting!</title>
      <link>https://edmar.sh/contact/</link>
      <description></description>
      <pubDate>Mon, 22 Jun 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/contact/</guid>
    </item>
    <item>
      <title>LLMs</title>
      <link>https://edmar.sh/blog/llms/</link>
      <description></description>
      <pubDate>Mon, 22 Jun 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/llms/</guid>
    </item>
    <item>
      <title>Blog</title>
      <link>https://edmar.sh/blog/</link>
      <description></description>
      <pubDate>Mon, 15 Jun 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/</guid>
    </item>
    <item>
      <title>Creating website templates using AI</title>
      <link>https://edmar.sh/blog/static-site-transformation/creating-templates-using-ai/</link>
      <description>&lt;p&gt;When converting my site to a static site generator (SSG), I learned they require templates to convert my Markdown files to HTML based on the associated template. Templates also enforce structure and allow dynamic content.&lt;/p&gt;
&lt;p&gt;I didn’t know a thing about templating languages, so I turned to large language models (LLMs) to help me write code for the templates on my site. There are many templating languages, but I chose &lt;a href=&quot;https://mozilla.github.io/nunjucks/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Nunjucks&lt;/a&gt; basically because it was the default for a lot of the Eleventy documentation. Nunjucks is based on &lt;a href=&quot;https://jinja.palletsprojects.com/en/stable/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Jinja&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;what-i-learned-about-llms&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/creating-templates-using-ai/#what-i-learned-about-llms&quot;&gt;What I learned about LLMs&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;LLMs can only do so much, and are often just plain wrong (known as &lt;em&gt;hallucinations&lt;/em&gt;). What I learned is that if you want good answers, then you have to think through your logic. It’s your typical GIGO (garbage in, garbage out) cycle, so it’s helpful to write it down regardless of the language.&lt;/p&gt;
&lt;p&gt;Over the course of my back-and-forth with the LLMs, understanding the logic I wanted helped me to accurately frame the question to the LLM. This made me think more and more about how to craft prompts, and how technical writers can educate regular folks how best to use AI.&lt;/p&gt;
&lt;p&gt;On the plus side, the LLMs did things it would’ve taken me a lot more time to learn and do manually. Here are a few things that the LLMs helped me work through:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Continual content/metadata revision.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Repeatedly interating on templates.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trying to modularize by abstracting templates in templates.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sorting entries like podcast episodes in reverse order by appending &lt;code&gt;| reverse&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to split arrays of items and display them using slices.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to create a “shortcode” to programmatically display the current year:&lt;/p&gt;
&lt;pre class=&quot;language-javascript&quot;&gt;&lt;code class=&quot;language-javascript&quot;&gt;eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addShortcode&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;year&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token interpolation&quot;&gt;&lt;span class=&quot;token interpolation-punctuation punctuation&quot;&gt;${&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;token class-name&quot;&gt;Date&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;getFullYear&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token interpolation-punctuation punctuation&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.11ty.dev/docs/collections/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Collections&lt;/a&gt; (essentially tags) and how to use them to group topics.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;gemini-vs.-copilot&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/creating-templates-using-ai/#gemini-vs.-copilot&quot;&gt;Gemini vs. Copilot&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I pitted Google’s Gemini against GitHub Copilot. I prompted Gemini with:&lt;/p&gt;
&lt;pre class=&quot;language-txt&quot;&gt;&lt;code class=&quot;language-txt&quot;&gt;I&#39;m creating a web site using Eleventy, Nunjucks, Tailwind CSS, HTML, and Markdown. I&#39;d like your help with a template for the homepage.&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here’s the response. Note the items in braces are part of the Nunjucks template language.&lt;/p&gt;
&lt;pre class=&quot;language-markup&quot;&gt;&lt;code class=&quot;language-markup&quot;&gt;&lt;span class=&quot;token doctype&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;!&lt;/span&gt;&lt;span class=&quot;token doctype-tag&quot;&gt;DOCTYPE&lt;/span&gt; &lt;span class=&quot;token name&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;html&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;lang&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;en&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;head&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;meta&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;charset&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;UTF-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;meta&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;viewport&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;width=device-width, initial-scale=1.0&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;title&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;My Eleventy Site&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;title&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;link&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/styles/tailwind.css&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;rel&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;stylesheet&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;head&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;body&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-gray-100 text-gray-900 font-sans&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;header&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-blue-600 text-white p-4 shadow-md&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h1&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-3xl font-bold&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Welcome to My Site&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h1&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;header&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;main&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;container mx-auto mt-8 px-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;mb-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h2&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-2xl font-semibold&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;About&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h2&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;mt-2&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                {% markdown %}
                Welcome to my website. Here you will find information about me and my projects.
                {% endmarkdown %}
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;mb-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h2&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-2xl font-semibold&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Latest Content&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h2&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
               {% assign allItems = collections.all | sort_by: &#39;date&#39;, &#39;desc&#39; %}
                {% for item in allItems | slice(0, 6) %}
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-white p-4 shadow-md&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-xl font-semibold&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ item.data.title }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ item.data.description }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                {% endfor %}
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;main&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;footer&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-gray-800 text-white p-4 mt-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token entity named-entity&quot; title=&quot;&amp;copy;&quot;&gt;&amp;amp;copy;&lt;/span&gt; 2025 My Eleventy Site&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;footer&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;body&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;html&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Copilot said that the Gemini version was well-structured and accurate. Here’s the result:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/homepage-example.png&quot; alt=&quot;Screenshot of my homepage as generated by the Nunjucks template&quot;&gt;&lt;/p&gt;
&lt;h3 id=&quot;the-2026-update&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/creating-templates-using-ai/#the-2026-update&quot;&gt;The 2026 update&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;I’m writing most of this post a year after I drafted it. I fed the same prompt into the &lt;a href=&quot;https://huggingface.co/collections/Qwen/qwen3&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;code&gt;qwen3-coder-30b-a3b-instruct&lt;/code&gt;&lt;/a&gt; model that I’m running locally in &lt;a href=&quot;https://lmstudio.ai&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;LM Studio&lt;/a&gt;, and it output the following. It’s pretty obvious how advanced even locally running LLMs with a relatively small number of parameters have become in the past year. The 2026 version is far more detailed — and documented!&lt;/p&gt;
&lt;pre class=&quot;language-markup&quot;&gt;&lt;code class=&quot;language-markup&quot;&gt; &lt;span class=&quot;token doctype&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;!&lt;/span&gt;&lt;span class=&quot;token doctype-tag&quot;&gt;DOCTYPE&lt;/span&gt; &lt;span class=&quot;token name&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;html&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;lang&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;en&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;head&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;meta&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;charset&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;UTF-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;meta&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;viewport&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;width=device-width, initial-scale=1.0&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;title&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ title }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;title&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;meta&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;description&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ description }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;link&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/styles.css&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;rel&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;stylesheet&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;head&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;body&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-gray-50 text-gray-900&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;header&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-white shadow&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;container mx-auto px-4 py-6 flex justify-between items-center&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h1&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-2xl font-bold&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ title }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h1&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;nav&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;ul&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;flex space-x-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;hover:text-blue-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Home&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/about&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;hover:text-blue-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;About&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/posts&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;hover:text-blue-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Posts&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;li&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;ul&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;nav&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;header&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;main&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;container mx-auto px-4 py-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token comment&quot;&gt;&amp;lt;!-- Hero Section --&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-center mb-12&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h2&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-4xl font-bold mb-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ title }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h2&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-xl text-gray-600 max-w-2xl mx-auto&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ description }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

        &lt;span class=&quot;token comment&quot;&gt;&amp;lt;!-- Featured Content --&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;mb-12&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-2xl font-semibold mb-6&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Latest Posts&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                {% for post in collections.posts | reverse %}
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;article&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-white rounded-lg shadow-md overflow-hidden&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ post.url }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h4&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-xl font-semibold p-4 hover:text-blue-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ post.data.title }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h4&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;p-4 text-gray-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                        {{ post.templateContent | slice(0, 150) }}...
                    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;article&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                {% endfor %}
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

        &lt;span class=&quot;token comment&quot;&gt;&amp;lt;!-- About Section --&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-white rounded-lg shadow-md p-6 mb-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-2xl font-semibold mb-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;About This Site&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;This is a simple homepage built with Eleventy, Nunjucks, Tailwind CSS, HTML and Markdown.&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

        &lt;span class=&quot;token comment&quot;&gt;&amp;lt;!-- Newsletter Signup --&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;section&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-blue-50 rounded-lg p-6&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-xl font-semibold mb-2&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Stay Updated&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;mb-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Subscribe to get the latest posts delivered to your inbox.&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;form&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;flex flex-col sm:flex-row gap-2&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;input&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;email&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;placeholder&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;Your email address&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;flex-grow px-4 py-2 rounded border focus:outline-none focus:ring-2 focus:ring-blue-500&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;button&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;submit&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Subscribe&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;button&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;form&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;section&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;main&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;

    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;footer&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-gray-800 text-white py-8&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;container mx-auto px-4 text-center&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token entity named-entity&quot; title=&quot;&amp;copy;&quot;&gt;&amp;amp;copy;&lt;/span&gt; {{ &quot;now&quot; | date(&quot;YYYY&quot;) }} {{ title }}. All rights reserved.&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;footer&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;body&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;html&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
</description>
      <pubDate>Fri, 15 May 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/creating-templates-using-ai/</guid>
    </item>
    <item>
      <title>Human widget 3592 with Sharon Burton</title>
      <link>https://edmar.sh/podcasts/sharon-burton-march-2026/</link>
      <description>&lt;p&gt;Sharon was the &lt;a href=&quot;https://edmar.sh/podcasts/introducing-the-content-content-podcast/&quot;&gt;very first Content Content guest&lt;/a&gt; in 2015. She’s a content strategist, technical writing professor at the University of California Riverside, and editor of the book &lt;em&gt;Women in Technical Communication: From typewriters to touchscreens, a history by the women who did the work&lt;/em&gt;. Sharon’s book is available at:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://xmlpress.net/2026/03/02/women-in-technical-communication/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;XMLPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.barnesandnoble.com/w/women-in-technical-communication-sharon-burton/1149551546?ean=9781937434915&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Barnes and Noble&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://bookshop.org/p/books/women-in-technical-communication-from-typewriters-to-touchscreens-a-history-by-the-women-who-did-the-work/2301c140f7ff0eea?ean=9781937434915&amp;amp;next=t&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Bookshop.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://a.co/d/020WUefC&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Amazon&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;call-for-writers-for-sharon%E2%80%99s-next-book&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/sharon-burton-march-2026/#call-for-writers-for-sharon%E2%80%99s-next-book&quot;&gt;Call for writers for Sharon’s next book&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;If you know women engineers near retirement age or retired, help &lt;a href=&quot;https://docs.google.com/forms/d/1VX2bQPSmmoQuMuKut1ItA2oSDMZlF6Oit_JloIrRJl8/viewform?usp=drivesdk&amp;amp;edit_requested=true&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;spread the word&lt;/a&gt; for the next book: &lt;em&gt;Women in Engineering&lt;/em&gt;.&lt;/p&gt;
&lt;h2 id=&quot;credits&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/sharon-burton-march-2026/#credits&quot;&gt;Credits&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Intro voiceover by one of my best friends since high school, Corey Holtzberg at &lt;a href=&quot;https://cohostudios.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Coho Studios&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Intro music bed: &lt;em&gt;Let’s Relax&lt;/em&gt; by &lt;a href=&quot;https://soundcloud.com/user-656562764&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;VGM Mark H&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Music promoted by &lt;a href=&quot;https://www.free-stock-music.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;https://www.free-stock-music.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Creative Commons / Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0) &lt;a href=&quot;https://creativecommons.org/licenses/by-nd/3.0/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;https://creativecommons.org/licenses/by-nd/3.0/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Sun, 08 Mar 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/sharon-burton-march-2026/</guid>
    </item>
    <item>
      <title>Creating my portfolio website in a virtual environment</title>
      <link>https://edmar.sh/blog/static-site-transformation/using-a-vm/</link>
      <description>&lt;p&gt;I’ve experimented with Linux for decades. I played around with &lt;a href=&quot;https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Red Hat Linux&lt;/a&gt; in the early 2000s at my first tech writing job. I &lt;em&gt;tried&lt;/em&gt; to understand &lt;a href=&quot;https://www.opensuse.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OpenSUSE&lt;/a&gt; on my &lt;a href=&quot;https://www.wired.com/2009/01/hp-netbook-review&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;HP 2140 Netbook&lt;/a&gt; back in 2009 (I installed Ubuntu instead pretty quickly). I even &lt;a href=&quot;https://www.slideshare.net/slideshow/creating-a-drupal-sandbox-using-virtualbox-and-drupal-quickstart/28217861&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;gave a presentation about VMs&lt;/a&gt; back in 2010. So when I decided to rebuild my website, I knew I wanted to develop it in a Linux desktop virtual environment on a virtual machine (VM). Why?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I love Windows and always have, but I had concerns about trying to configure my bread-and-butter machine to work with things I wasn’t yet comfortable with. This compartmentalization let me break things and start over without interrupting my day-to-day.&lt;/li&gt;
&lt;li&gt;Free! From the &lt;a href=&quot;https://www.vmware.com/products/desktop-hypervisor/workstation-and-fusion&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;VMWare Workstation&lt;/a&gt; host to the operating system, the only thing it cost was some time and disk space (and it &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/using-a-vm/#my-new-daily-driver&quot;&gt;changed the way I work&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;It allowed me to configure, test, and run static site generators (SSGs) like Hugo and Eleventy in the environments they’ll eventually run.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Not&lt;/em&gt; Apple. The only Apple product I’ve ever owned was an iPad 3 and I hated every minute of it.&lt;/li&gt;
&lt;li&gt;It’s &lt;em&gt;fast&lt;/em&gt;, and the environment is incredibly customizable.&lt;/li&gt;
&lt;li&gt;It’s a pretty easy transition from Windows to Linux with a GUI. Most apps you’re familiar with just have a different name and a different UI.&lt;/li&gt;
&lt;li&gt;For the development and writing tasks of my project, it &lt;em&gt;just worked&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;Pause&lt;/code&gt; on the VM and you’re done.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;how-to-start-using-a-vm&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/using-a-vm/#how-to-start-using-a-vm&quot;&gt;How to start using a VM&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;When I said &lt;em&gt;some&lt;/em&gt; time, that wasn’t entirely accurate. There’s a learning curve to working with Linux. You need to install and configure development tools and frameworks by command line interface (CLI), like NodeJS, or &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator&quot;&gt;an SSG&lt;/a&gt;. This isn’t really anything you’d do differently with any other operating system, but there are often Windows or Mac apps that will do the heavy lifting for you.&lt;/p&gt;
&lt;p&gt;Once you get over that curve, you spend your time using cross-platform apps and technologies like VS Code, GitHub, and OpenOffice.&lt;/p&gt;
&lt;p&gt;You &lt;em&gt;do&lt;/em&gt; have to make some decisions, and test them, but some are actually fun:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Choosing a virtual machine (VM) host — I was surprised to learn &lt;a href=&quot;https://www.vmware.com/products/desktop-hypervisor/workstation-and-fusion&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;VMWare Workstation&lt;/a&gt; was much quicker than &lt;a href=&quot;https://www.virtualbox.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;VirtualBox&lt;/a&gt;, which I used for years.&lt;/li&gt;
&lt;li&gt;Trying out “flavors” of Linux if you have the time and inclination. I tried distributions (distros) like Fedora and Ubuntu; due to my familiarity with Ubuntu and self-imposed deadlines, it won.&lt;/li&gt;
&lt;li&gt;Then there are desktop environments like GNOME and Kubuntu. For me, the Ubuntu-based &lt;a href=&quot;https://linuxmint.com/edition.php?id=302&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mint Cinnamon&lt;/a&gt; &lt;em&gt;just worked&lt;/em&gt;. I bought a laptop and installed Mint on it, which was incredibly painless to install and configure.&lt;/li&gt;
&lt;li&gt;Each VM and distro I tested were straightforward in terms of setup and had lots of handholding, as well as &lt;a href=&quot;https://linuxmint.com/documentation.php&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;pretty good documentation&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;and-then-one-day%E2%80%A6&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/using-a-vm/#and-then-one-day%E2%80%A6&quot;&gt;And then one day…&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;One day I opened my VM to find it no longer had internet connectivity. My host (Windows) computer had access, other VMs I was testing had connectivity, so &lt;em&gt;something&lt;/em&gt; happened to my working version. An hour or so searching and the answer was… well, I’m not sure. It’s &lt;em&gt;possible&lt;/em&gt; that it broke from an update, but I lost time trying to find the right magic commands. because it wasn’t something easily done through the GUI.&lt;/p&gt;
&lt;p&gt;The good news is that if you do this in a VM, it’s far easier to recover without affecting your daily machine. I just started over with a new virtual machine. My code was in GitHub, so it made it much quicker to recover and keep working after I reinstalled, and had the added benefit of cleaning up my earlier mistakes.&lt;/p&gt;
&lt;h2 id=&quot;my-new-daily-driver&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/using-a-vm/#my-new-daily-driver&quot;&gt;My new daily driver&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Fast-forward a year and Kubuntu is now my daily OS. Once you get over the learning curve, you’ll find Linux desktops are much more customizable than Windows.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/kubuntu-desktop-customization.png&quot; alt=&quot;Customized Kubuntu desktop&quot;&gt;&lt;/p&gt;
&lt;p&gt;I only boot into Windows to play motorsport games with a sim-racing rig. Everything else — including my &lt;a href=&quot;https://www.paradoxinteractive.com/games/cities-skylines-ii/about&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;favorite city-building game&lt;/a&gt; — runs great in Linux. I’ve even created my own Linux-based homelab.&lt;/p&gt;
&lt;h2 id=&quot;it-worked-for-me&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/using-a-vm/#it-worked-for-me&quot;&gt;It worked for me&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Working in a virtual environment provided a teaching moment, separated work from daily life, and eventually led to a complete change in how I use my computer daily. I don’t always love the learning curve, but I have zero regrets in choosing to build my site this way.&lt;/p&gt;
</description>
      <pubDate>Sat, 07 Mar 2026 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/using-a-vm/</guid>
    </item>
    <item>
      <title>When your content strategy goes wrong</title>
      <link>https://edmar.sh/blog/static-site-transformation/when-things-go-wrong/</link>
      <description>&lt;p&gt;A major part of my post-launch content strategy was releasing blog posts on a regular cadence to drive traffic. As I built my site, I documented the process through partially written Markdown files. I stored these blog post stubs in a &lt;code&gt;DONT-DELETE&lt;/code&gt; branch in my Git repository. Not quite best practice, but also not unusual to those who have had to clean up obsolete branches.&lt;/p&gt;
&lt;p&gt;When it came time to pull one out of that branch, I decided the content reuse piece was in pretty good shape. I updated it, published the post, and felt good about where I’d taken it. It followed an &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/writing-with-ai&quot;&gt;AI-related post&lt;/a&gt; that was widely viewed (surprise!). Not surprisingly, the AI post was a bigger draw than content reuse.&lt;/p&gt;
&lt;p&gt;…Then I noticed I’d already used a large portion of it on my already-published &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/the-how&quot;&gt;site structure post&lt;/a&gt;. Ironically, my blog post about reusing content duplicated my own content.&lt;/p&gt;
&lt;h2 id=&quot;test-case&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/when-things-go-wrong/#test-case&quot;&gt;Test case&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Once I discovered the mistake a few days later, I left both up for a couple of weeks to see what happened (also to figure out what to do next). Either no one noticed or no one notified me. Based on my Google Analytics, it seems to be the former.&lt;/p&gt;
&lt;h2 id=&quot;lessons-learned&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/when-things-go-wrong/#lessons-learned&quot;&gt;Lessons learned&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I had a chance to fix things that no one noticed. I restructured and rewrote three posts to make for tighter, more focused topics, and linked across them to (hopefully) drive traffic.&lt;/p&gt;
&lt;p&gt;The reality is that this is a luxury you &lt;em&gt;don’t&lt;/em&gt; have when you publish professional content at scale. In a production environment with a team of writers, my error would probably be noticed in a content review by someone who’s familiar with existing body of content. But this relies on humans, which is why it’s important to have governance and automated quality checks in place.&lt;/p&gt;
&lt;p&gt;On the plus side, I got another blog post out of it.&lt;/p&gt;
</description>
      <pubDate>Wed, 19 Nov 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/when-things-go-wrong/</guid>
    </item>
    <item>
      <title>Content reviews</title>
      <link>https://edmar.sh/skills/website-reviews/</link>
      <description>&lt;p&gt;Use this &lt;a href=&quot;https://edmar.sh/assets/pdfs/website-review-checklist.pdf&quot;&gt;free, two-page checklist&lt;/a&gt; to ensure your web presence and its content are working for your organization. &lt;a href=&quot;https://edmar.sh/contact/&quot;&gt;Contact me&lt;/a&gt; if you want to learn more or take a deeper dive with a content audit!&lt;/p&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/website-reviews/</guid>
    </item>
    <item>
      <title>Technical writing</title>
      <link>https://edmar.sh/skills/technical-writing/</link>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Detective&lt;/strong&gt;: Tracking down information across wikis, SharePoint, Confluence, legacy systems, and Subject Matter Experts (SMEs).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Librarian&lt;/strong&gt;: Knowing what information is available, what information users &lt;em&gt;actually&lt;/em&gt; need, and where to find it.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Translator&lt;/strong&gt;: Tech writers interact with a bunch of folks with differing commands of the English language, as well as those whose priority or focus isn’t on the writing. We get it, we’re all busy. That’s where tech writers and editors come in.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/tech-writer-venn.png&quot; alt=&quot;Venn diagram&quot;&gt;&lt;/p&gt;
&lt;h2 id=&quot;transforming-technical-communication-for-modern-organizations&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/technical-writing/#transforming-technical-communication-for-modern-organizations&quot;&gt;Transforming technical communication for modern organizations&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;30+ years of experience means I’ve touched on all aspects of technical communication. My approach helps organizations not just create documentation, but build sustainable content ecosystems that drive user engagement and support business growth.&lt;/p&gt;
&lt;p&gt;I’ve created:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;API reference documentation&lt;/li&gt;
&lt;li&gt;Cheat sheets&lt;/li&gt;
&lt;li&gt;eLearning modules&lt;/li&gt;
&lt;li&gt;Multimedia&lt;/li&gt;
&lt;li&gt;Online help&lt;/li&gt;
&lt;li&gt;PDF documentation&lt;/li&gt;
&lt;li&gt;Podcasts&lt;/li&gt;
&lt;li&gt;Printed manuals&lt;/li&gt;
&lt;li&gt;Technical illustrations&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;strategic-content-leadership&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/technical-writing/#strategic-content-leadership&quot;&gt;Strategic content leadership&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Transform complex technical information into clear, user-focused documentation.&lt;/li&gt;
&lt;li&gt;Implement data-driven &lt;a href=&quot;https://edmar.sh/skills/content-strategy/&quot;&gt;content strategies&lt;/a&gt; that align with business objectives.&lt;/li&gt;
&lt;li&gt;Build and maintain robust content governance frameworks.&lt;/li&gt;
&lt;li&gt;Design a scalable &lt;a href=&quot;https://edmar.sh/skills/information-architecture&quot;&gt;information architecture&lt;/a&gt; that grows with your organization.&lt;/li&gt;
&lt;li&gt;Associate Fellow, Society for Technical Communication (STC).&lt;/li&gt;
&lt;li&gt;Award-winning newsletter editor for STC NY Metro Chapter.&lt;/li&gt;
&lt;li&gt;Award-winning designer and contributor of a company’s first full-color printed publication.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/technical-writing/</guid>
    </item>
    <item>
      <title>Podcasting</title>
      <link>https://edmar.sh/skills/podcasting/</link>
      <description>&lt;p&gt;Podcasts are a terrifically friendly and informative way to get your message out. With over seven years of experience in podcasting, and numerous presentations about the value of podcasting, let’s consider this as part of your &lt;a href=&quot;https://edmar.sh/skills/content-strategy/&quot;&gt;content strategy&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;examples&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/podcasting/#examples&quot;&gt;Examples&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Created, hosted, scheduled, recorded, edited, produced, published, promoted, and reviewed metrics for the &lt;a href=&quot;https://edmar.sh/podcasts/&quot;&gt;Content Content podcast&lt;/a&gt;, interviewing leaders in technical communication, information architecture, content strategy, and more.&lt;/li&gt;
&lt;li&gt;Host of &lt;a href=&quot;https://lavacon.org/category/podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;LavaCon content strategy conference podcast&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Guest:
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.scriptorium.com/2018/02/full-transcript-podcasting-strategy-podcast-guest-ed-marsh/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Strategy Experts&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://anchor.fm/contentjourneys/episodes/Content-Journeys---014---Content-Podcasting-e160pu0&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Journeys&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://idratherbewriting.com/blog/evolution-of-podcasting-podcast-ed-marsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;I’d rather be writing&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/podcasting/</guid>
    </item>
    <item>
      <title>Metrics and data</title>
      <link>https://edmar.sh/skills/metrics/</link>
      <description>&lt;p&gt;Measuring how your content performs can help your organization:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Plan&lt;/li&gt;
&lt;li&gt;Ensure the content you create is relevant&lt;/li&gt;
&lt;li&gt;Address highly used topics&lt;/li&gt;
&lt;li&gt;Identify gaps&lt;/li&gt;
&lt;li&gt;Report&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;examples&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/metrics/#examples&quot;&gt;Examples&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Set up custom &lt;a href=&quot;https://www.elastic.co/kibana/kibana-dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Elastic Kibana dashboards&lt;/a&gt; to monitor content quality and traffic.&lt;/li&gt;
&lt;li&gt;Designed and wrote division-wide email newsletter blasts highlighting metrics, featured content, and relevant content for each quarterly reporting period. Metrics indicated these blasts drove traffic to featured topics.&lt;/li&gt;
&lt;li&gt;Initiated custom quarterly reports that displayed metrics analysis for senior management.&lt;/li&gt;
&lt;li&gt;Wrote SQL queries to analyze actual performance of a legacy help system, which informed migration to a new platform.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/metrics/</guid>
    </item>
    <item>
      <title>Information architecture</title>
      <link>https://edmar.sh/skills/information-architecture/</link>
      <description>&lt;p&gt;The way you present and organize your content says a lot to your clients and customers. Giving structure to your organization’s content ensures:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your reputation is bolstered by high-quality content.&lt;/li&gt;
&lt;li&gt;Consistency across every piece of content and channel.&lt;/li&gt;
&lt;li&gt;Programmatic ingestion and manipulation.&lt;/li&gt;
&lt;li&gt;Effective SEO.&lt;/li&gt;
&lt;li&gt;A consistent experience to your users and staff.&lt;/li&gt;
&lt;li&gt;People quickly get the answers they need to move on with their day.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;examples&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/information-architecture/#examples&quot;&gt;Examples&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Re-architected a 1200-topic, 10-year-old Adobe RoboHelp HTML system based almost exclusively on FAQs. Using a data-driven approach, I reduced topics by 50% and increased traffic to the remaining topics.&lt;/li&gt;
&lt;li&gt;Developed and implemented a unique publishing workflow leveraging DITA XML and XSLT to use Confluence as a Content Management System (CMS).&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/information-architecture/</guid>
    </item>
    <item>
      <title>Content strategy</title>
      <link>https://edmar.sh/skills/content-strategy/</link>
      <description>&lt;p&gt;Let’s be honest. Most organizations’ content is scattered across Confluence pages, SharePoint, your company’s intranet, hundreds of repositories, help systems which may or may not be current, knowledge management systems, Word documents, and more.&lt;/p&gt;
&lt;p&gt;Content strategy means the right content in the right format at the right time in the right place. Do you really want to “throw AI” at it without understanding the complexity and the true costs?&lt;/p&gt;
&lt;p&gt;The best place to start is with a content audit. I &lt;em&gt;love&lt;/em&gt; content audits. Let me help you and show you how to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Understand what content assets you have, where they are, and the formats they’re in.&lt;/li&gt;
&lt;li&gt;Use &lt;a href=&quot;https://edmar.sh/skills/metrics/&quot;&gt;metrics&lt;/a&gt; to guide your strategy.&lt;/li&gt;
&lt;li&gt;Define a common language through a style guide.&lt;/li&gt;
&lt;li&gt;Define structure through &lt;a href=&quot;https://edmar.sh/skills/information-architecture/&quot;&gt;information architecture&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Govern and maintain your content.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;governance&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/content-strategy/#governance&quot;&gt;Governance&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Content without governance is an organizational nightmare: unsustainable, and impossible to maintain.&lt;/p&gt;
&lt;p&gt;The content your organization generates needs a goal, organization, style, and governance. Without someone setting content standards and monitoring its performance:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your content becomes disorganized and strewn across multiple platforms.&lt;/li&gt;
&lt;li&gt;Content duplication makes it impossible for your employees, clients, and users to find the single source of truth.&lt;/li&gt;
&lt;li&gt;Productivity declines because your employees are searching multiple places.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here’s a free, &lt;a href=&quot;https://edmar.sh/assets/pdfs/website-review-checklist.pdf&quot;&gt;two-page checklist&lt;/a&gt; to ensure your site’s content is best portraying your company’s best side. &lt;a href=&quot;https://edmar.sh/contact/&quot;&gt;Contact me&lt;/a&gt; if you want to learn more!&lt;/p&gt;
&lt;h2 id=&quot;examples&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/content-strategy/#examples&quot;&gt;Examples&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Managed and coordinated product content strategy for 35+ products with stakeholders including senior management.&lt;/li&gt;
&lt;li&gt;Ensured content quality by implementing style guide and documentation linter with custom business rules that improved consistency across all products.&lt;/li&gt;
&lt;li&gt;Identified user and organizational knowledge needs by conducting user research in formal interviews, informal conversations, focus groups, analytics research, and support ticket analysis.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/content-strategy/</guid>
    </item>
    <item>
      <title>Community building</title>
      <link>https://edmar.sh/skills/community/</link>
      <description>&lt;p&gt;I have a history of finding those people and encouraging them to be champions for high-quality content that’s an asset to your firm.&lt;/p&gt;
&lt;h2 id=&quot;stakeholder-management&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/community/#stakeholder-management&quot;&gt;Stakeholder management&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I have a long track record successfully interacting with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Product managers&lt;/li&gt;
&lt;li&gt;Business analysts&lt;/li&gt;
&lt;li&gt;Senior management&lt;/li&gt;
&lt;li&gt;Cross-divisional leadership&lt;/li&gt;
&lt;li&gt;The Executive Office&lt;/li&gt;
&lt;li&gt;Internal Audit&lt;/li&gt;
&lt;li&gt;Support teams&lt;/li&gt;
&lt;li&gt;End users&lt;/li&gt;
&lt;li&gt;Developers&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;how-i%E2%80%99ve-built-community&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/skills/community/#how-i%E2%80%99ve-built-community&quot;&gt;How I’ve built community&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Held quarterly “content champions” meetings with interested stakeholders to get their feedback on how our content and site are performing, and workshop upcoming content initiatives.&lt;/li&gt;
&lt;li&gt;Started a regular “content creators catchup” that brought cross-divisional tech writers, UXers, and others involved with content across the firm together to share and learn.&lt;/li&gt;
&lt;li&gt;Created custom monthly metric emails to let stakeholders know how their content is performing, and where there may be gaps or opportunities.&lt;/li&gt;
&lt;li&gt;Spoken at user groups and conferences.&lt;/li&gt;
&lt;li&gt;Created a &lt;a href=&quot;https://edmar.sh/podcasts/&quot;&gt;pioneering podcast&lt;/a&gt; to give back to the technical writing community.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/community/</guid>
    </item>
    <item>
      <title>Coding experience</title>
      <link>https://edmar.sh/skills/code-development/</link>
      <description>&lt;p&gt;Here’s how I’ve used code to solve content problems:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Created my first website in the 1990s.&lt;/li&gt;
&lt;li&gt;Wrote SQL queries to analyze hidden &lt;a href=&quot;https://edmar.sh/skills/metrics/&quot;&gt;user metrics&lt;/a&gt; in a legacy help system.&lt;/li&gt;
&lt;li&gt;Converted a 1500-topic Adobe RoboHelp project to DITA XML.&lt;/li&gt;
&lt;li&gt;Developed custom XSLT transforms for DITA-to-HTML conversion.&lt;/li&gt;
&lt;li&gt;Built a unique publishing platform using Atlassian Confluence as a CMS with a custom front end.&lt;/li&gt;
&lt;li&gt;Created a Python script to help subject matter experts (SMEs) auto-fill homepage metadata.&lt;/li&gt;
&lt;li&gt;Automated repetitive team tasks through custom scripting.&lt;/li&gt;
&lt;li&gt;Designed and built &lt;a href=&quot;https://web.archive.org/web/20210121085031/http://contentcontent.info/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;contentcontent.info&lt;/a&gt; — a decade-long technical content aggregator — using Drupal CMS.&lt;/li&gt;
&lt;li&gt;Helped establish the Drupal CMS Northern NJ user group as a founding member.&lt;/li&gt;
&lt;li&gt;Built &lt;a href=&quot;http://edmarsh.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;edmarsh.com&lt;/a&gt; from scratch using WordPress in 2008.&lt;/li&gt;
&lt;li&gt;Transformed &lt;a href=&quot;http://edmarsh.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;edmarsh.com&lt;/a&gt; to &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/&quot;&gt;run on a static site generator&lt;/a&gt; in 2025.&lt;/li&gt;
&lt;li&gt;Defined Jira user story guidelines that were adopted division-wide within three months of onboarding.&lt;/li&gt;
&lt;li&gt;Wrote Jira user stories and epics following &lt;a href=&quot;https://cucumber.io/docs/gherkin/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Gherkin language principles&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Worked with Kanban and story boards.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/code-development/</guid>
    </item>
    <item>
      <title>AI usage</title>
      <link>https://edmar.sh/skills/artificial-intelligence/</link>
      <description>&lt;p&gt;Here’s how I’ve used AI:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Created custom prompts for things like my home network, resume reviews, technical writer assistant, and more.&lt;/li&gt;
&lt;li&gt;Created a Python script that prompted users to fill in the required fields for the homepage template.&lt;/li&gt;
&lt;li&gt;Ran multiple LLMs locally through &lt;a href=&quot;https://lmstudio.ai/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;LM Studio&lt;/a&gt; (mostly from the &lt;a href=&quot;https://huggingface.co/collections/Qwen/qwen3&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Qwen3 family&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;Replaced GitHub Copilot in VS Code with local LLMs using the &lt;a href=&quot;https://cline.bot/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cline extension&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Developed my portfolio website using Google Bard/Gemini, Claude, GitHub Copilot, and local LLMs.&lt;/li&gt;
&lt;li&gt;Locally hosted &lt;a href=&quot;https://docs.searxng.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;SearXNG anonymous search engine&lt;/a&gt; in a Docker container and added it as an MCP server so local LLMs can access the internet.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/artificial-intelligence/</guid>
    </item>
    <item>
      <title>Ed Marsh creates content and community</title>
      <link>https://edmar.sh/</link>
      <description></description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/</guid>
    </item>
    <item>
      <title>Moving from WordPress to a static site generator</title>
      <link>https://edmar.sh/blog/static-site-transformation/</link>
      <description></description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/</guid>
    </item>
    <item>
      <title>Ed Marsh: technical communicator, content strategist, podcaster, mentor</title>
      <link>https://edmar.sh/about/about-ed-marsh/</link>
      <description>&lt;p&gt;I’m a proud New Jersey native, and I’m passionate about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Proper punctuation (especially the em dash —, semicolon, and ellipsis…).&lt;/li&gt;
&lt;li&gt;The Oxford comma.&lt;/li&gt;
&lt;li&gt;Craft beer (former homebrewer).&lt;/li&gt;
&lt;li&gt;Making restaurant-quality food at home with local ingredients.&lt;/li&gt;
&lt;li&gt;IndyCar racing.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;career-journey&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/about/about-ed-marsh/#career-journey&quot;&gt;Career journey&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;My career started in New York City’s software industry at Information Builders (now part of Tibco) in 1994. I learned how to be a technical writer as part of a large documentation team.&lt;/p&gt;
&lt;p&gt;My web journey started in the mid-1990s with my &lt;a href=&quot;https://web.archive.org/web/19991008110914/http://www.geocities.com/SoHo/Cafe/8299/frameset.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;first website (archived link)&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;After a stint as a solo technical writer for a financial services SaaS provider — where I spent time on a trading floor and in data centers — I progressed to Goldman Sachs. Over 13 years, I worked in two divisions on Wall Street, creating both user- and developer-facing content. Working in small, medium, and enterprise environments taught me crucial lessons about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cross-functional collaboration.&lt;/li&gt;
&lt;li&gt;Risk management.&lt;/li&gt;
&lt;li&gt;Governance.&lt;/li&gt;
&lt;li&gt;Content strategy at scale.&lt;/li&gt;
&lt;li&gt;Managing projects and subject matter experts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here’s how I’ve continually evolved throughout my adult life:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Learning how to be a technical communicator.&lt;/li&gt;
&lt;li&gt;Learning how to teach music to middle- and high-school students.&lt;/li&gt;
&lt;li&gt;Learning how to write music.&lt;/li&gt;
&lt;li&gt;Developing content strategy.&lt;/li&gt;
&lt;li&gt;Implementing governance.&lt;/li&gt;
&lt;li&gt;Managing projects.&lt;/li&gt;
&lt;li&gt;Public speaking.&lt;/li&gt;
&lt;li&gt;Creating my own podcast.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;a-love-of-learning-and-teaching&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/about/about-ed-marsh/#a-love-of-learning-and-teaching&quot;&gt;A love of learning and teaching&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;As a former high school drumline instructor, my goal was to get young drummers playing and sounding like one through teamwork and structure — which helps me bring a structured approach to content.&lt;/p&gt;
&lt;p&gt;I’ve mentored dozens of people:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Former students.&lt;/li&gt;
&lt;li&gt;Colleagues.&lt;/li&gt;
&lt;li&gt;Children of former colleagues.&lt;/li&gt;
&lt;li&gt;Numerous people on the ADPlist platform.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;My band leadership experience includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Teaching high school marching band part-time (with a full-time job) for 14 years, including six as director.&lt;/li&gt;
&lt;li&gt;Representing the state of New Jersey in Washington DC’s National July 4th Parade.&lt;/li&gt;
&lt;li&gt;Co-founding a percussion ensemble called &lt;em&gt;Cacophony&lt;/em&gt;, writing original scores.&lt;/li&gt;
&lt;li&gt;Creating and maintaining the band’s website starting in 1996 — which led to the band performing in an Ikea advertisement.&lt;/li&gt;
&lt;li&gt;Receiving recognition from &lt;a href=&quot;http://www.sbomagazine.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;School Band and Orchestra&lt;/a&gt; magazine as one of “50 Directors Who Make a Difference”, representing New Jersey in 2006.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 25 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/about/about-ed-marsh/</guid>
    </item>
    <item>
      <title>Asking AI to write documentation</title>
      <link>https://edmar.sh/blog/static-site-transformation/writing-with-ai/</link>
      <description>&lt;p&gt;The answer for coders is &lt;em&gt;not yet&lt;/em&gt;. For those on the more creative end, including technical writers, it’s a bit more grey.&lt;/p&gt;
&lt;p&gt;I’ve always &lt;a href=&quot;https://edmar.sh/skills/code-development/&quot;&gt;dabbled in code&lt;/a&gt;, but had difficulty expressing the logic in my head in code. So I asked AI to do a tech writer’s job and document the code for my site.&lt;/p&gt;
&lt;p&gt;My first forays into large language models were with Google Gemini (née Bard). I asked how to write code for automation tasks in Windows Powershell and Python. Fast-forward a year or two, and GitHub Copilot is baked into VS Code.&lt;/p&gt;
&lt;h2 id=&quot;ai-documentation-output&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/writing-with-ai/#ai-documentation-output&quot;&gt;AI documentation output&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I asked GitHub Copilot (and other AI LLMs) to do my job by documenting my codebase, write summaries, and even read through my own content. My prompt was &lt;code&gt;think like a technical writer and create a markdown file that documents this site&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;This is a good example of what AI can do for you, but also where humans are invaluable. A large language model (LLM) can write a code sample, but can’t tell if it displays correctly.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Because the output includes a mix of Markdown, template code, and HTML, it’s nearly impossible to display correctly in a codeblock. I &lt;a href=&quot;https://github.com/emdashdrupal/11ty-working/blob/ai-outputs/content/static-site-transformation&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;created a separate branch&lt;/a&gt; and excluded these from collections using the &lt;code&gt;eleventyExcludeFromCollections: true&lt;/code&gt; parameter in my front matter, which means it won’t appear as a page on the site.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/emdashdrupal/11ty-working/blob/ai-outputs/content/static-site-transformation/ai-doc-output-orig.md&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Original output&lt;/a&gt; for the first draft of the site.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/emdashdrupal/11ty-working/blob/ai-outputs/content/static-site-transformation/ai-doc-output-v2.md&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Version 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/emdashdrupal/11ty-working/blob/ai-outputs/content/static-site-transformation/ai-output-17-june-2025.md&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Most recent version&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you look at the output, it’s pretty impressive that AI can get to this level of granularity. But the results are only high-level overviews, and parts are not entirely correct — partially as a result of my lack of coding experience. For example, in the original the Featured content section is technically correct. However, at the time I asked the question it wasn’t working.&lt;/p&gt;
&lt;p&gt;There’s still a need for a person to review and verify generated output, particularly for liability purposes. Attorneys won’t be happy if their organization is sued for incorrect documentation that’s written by AI.&lt;/p&gt;
&lt;h2 id=&quot;the-llms.txt-file&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/writing-with-ai/#the-llms.txt-file&quot;&gt;The llms.txt file&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I read about the &lt;a href=&quot;https://llmstxt.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;code&gt;llms.txt&lt;/code&gt; file&lt;/a&gt;, which gave me &lt;em&gt;exactly&lt;/em&gt; the distraction I needed from writing content that I’d been putting off.&lt;/p&gt;
&lt;p&gt;I ran three different online &lt;code&gt;llms.txt&lt;/code&gt; generators against both my current production and my development site. These generators request your website’s URL, crawl it, and create an &lt;code&gt;llms.txt&lt;/code&gt; Markdown file for you.&lt;/p&gt;
&lt;p&gt;What I took away is how my site is interpreted by people, bots, and generative AI. It’s interesting to see how the generators return &lt;em&gt;similar&lt;/em&gt; but not &lt;em&gt;identical&lt;/em&gt; results from what’s essentially the same content:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A podcast episode discussing project management and technical communication in the hardware industry with Viqui Dill.&lt;/li&gt;
&lt;li&gt;Discussing project management and technical communication with Viqui Dill in a podcast format.&lt;/li&gt;
&lt;li&gt;Discussing the intersection of project management and technical communication through Viqui Dill’s insights and experiences.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;conclusions&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/writing-with-ai/#conclusions&quot;&gt;Conclusions&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;There’s plenty to learn from this output, especially because it’s only going to get better. I think there’s opportunity for technical communicators to improve and verify AI-generated documentation. There’s also huge potential for tech writers to use AI to describe their codebase, generate code samples, and translate content into useful info.&lt;/p&gt;
&lt;p&gt;I’m not &lt;s&gt;proud&lt;/s&gt; shocked by how much I relied on a chatbot to program this website, but it helped me deliver (toward the end of this project I learned this is called &lt;em&gt;vibe-coding&lt;/em&gt;). I’m not a developer, and my goal wasn’t to become one, so using AI allowed me to (eventually) focus on the content I wanted to focus on. It did make me appreciate specialized development roles, because no one can do it all, even with AI.&lt;/p&gt;
</description>
      <pubDate>Tue, 23 Sep 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/writing-with-ai/</guid>
    </item>
    <item>
      <title>The why: Behind my SSG conversion project</title>
      <link>https://edmar.sh/blog/static-site-transformation/why/</link>
      <description>&lt;p&gt;I started this project as a strategic effort to create a portfolio highlighting my technical writing and content strategy skills. I didn’t have any recent writing samples to share with potential employers or clients due to intellectual property (IP) laws, which I take seriously. The public-facing samples I &lt;em&gt;did&lt;/em&gt; have were woefully out-of-date, as was my WordPress site. I didn’t realize &lt;em&gt;just&lt;/em&gt; how out-of-date the site was until I got deep into this project. I needed to redesign not only the site, but its content.&lt;/p&gt;
&lt;p&gt;This was a rare greenfield opportunity to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Audit a lifetime’s worth of content, dating back to LiveJournal blogs.&lt;/li&gt;
&lt;li&gt;Get rid of cruft.&lt;/li&gt;
&lt;li&gt;Reduce the costs of hosting and maintaining my own site.&lt;/li&gt;
&lt;li&gt;Understand how content is programmatically consumed and displayed to users.&lt;/li&gt;
&lt;li&gt;Learn some new skills without a lot of deadline pressure.&lt;/li&gt;
&lt;li&gt;Give back and explain to other technical communicators what building a modern web site from scratch entails.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;background&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/why/#background&quot;&gt;Background&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I knew from an early age I’d be involved in writing in some way. I interviewed friends on cassette in elementary school. I had my own &#39;zine. But since the days of the Commodore VIC-20, I’ve always been &lt;a href=&quot;https://edmar.sh/skills/code-development/&quot;&gt;curious about and dabbled in software development&lt;/a&gt;. I started building websites in 1996, which led me to a Drupal site, and also a WordPress personal site I built in 2008:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/edmarsh-dot-com-homepage-1-may-2025.png&quot; alt=&quot;Screenshot of my WordPress homepage as of 1 May 2025 with outdated design&quot;&gt;&lt;/p&gt;
&lt;p&gt;That site and its scope expanded when I started my podcast in 2015:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/edmarsh-dot-com-podcast-page-1-may-2025.png&quot; alt=&quot;Legacy podcast landing page&quot;&gt;&lt;/p&gt;
&lt;p&gt;When I decided to take this project on, getting hands-on appealed to me.&lt;/p&gt;
&lt;h2 id=&quot;technical-goals&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/why/#technical-goals&quot;&gt;Technical goals&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Update a 10-year-old design.&lt;/li&gt;
&lt;li&gt;Retire a complex WordPress site that didn’t get much traffic and needed maintenance.&lt;/li&gt;
&lt;li&gt;“Quickly” revamp my website to increase my chances at getting hired.&lt;/li&gt;
&lt;li&gt;Add value by developing with SSGs, which isn’t a skill a lot of technical writers have. SSGs — like &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator&quot;&gt;Eleventy that I chose&lt;/a&gt; — display the content that technical writers create.&lt;/li&gt;
&lt;li&gt;Learn newer technologies such as Nunjucks templating, that ended up leveraging old tech I’m familiar with like HTML and CSS.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;content-goals&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/why/#content-goals&quot;&gt;Content goals&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Generate a steady stream of content to drive traffic and feature as writing samples.&lt;/li&gt;
&lt;li&gt;Give back to the technical writing community by documenting the process of building static site implementation process.&lt;/li&gt;
&lt;li&gt;Review all the content on my site and see if it’s promoting my career in the best light.&lt;/li&gt;
&lt;li&gt;Decide whether to archive old content, like those &lt;em&gt;very&lt;/em&gt; early blog posts.&lt;/li&gt;
&lt;li&gt;Understand how to structure content not only for SSGs, but other programmatic use.&lt;/li&gt;
&lt;li&gt;Enjoy writing again.&lt;/li&gt;
&lt;li&gt;Do something for &lt;em&gt;me&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;cost-savings-goals&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/why/#cost-savings-goals&quot;&gt;Cost savings goals&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;My &lt;a href=&quot;https://www.mddhosting.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;web host (mddhosting)&lt;/a&gt; is great and worth the cost while I was actively updating the site. I no longer needed the complexity and related costs of it, so my goals were to reduce my financial and labor costs:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Minimize the overhead of maintaining a content management system. I no longer needed the complexity of a self-managed WordPress site. I hadn’t blogged in some time, and my &lt;a href=&quot;https://edmar.sh/podcasts/&quot;&gt;podcast&lt;/a&gt; has been on hiatus since 2022. Maintenance included:
&lt;ul&gt;
&lt;li&gt;Keeping up with plugin updates.&lt;/li&gt;
&lt;li&gt;WordPress updates.&lt;/li&gt;
&lt;li&gt;Processing the hundreds of spam comments that came through every day.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Reduce hosting costs. SSGs don’t require heavy infrastructure such as a database, so they can be hosted in places that WordPress sites can’t. This gave me flexibility to move to a zero- or low-cost host. That &lt;em&gt;doesn’t&lt;/em&gt; mean there are zero costs to hosting the site:
&lt;ul&gt;
&lt;li&gt;My existing site host was also my mail server, so I had to find and set up my own mail hosting. To add to the frustration, my first choice was too difficult to set up. So far, Zoho Mail has been great.&lt;/li&gt;
&lt;li&gt;Upgrading my podcast hosting. My podcast archive puts me at the limit of free disk space and bandwidth on GitHub, so I had to offload that to a paid service. The upside to this is I get &lt;a href=&quot;https://edmar.sh/skills/metrics/&quot;&gt;metrics&lt;/a&gt; I wouldn’t if they were self-hosted.&lt;/li&gt;
&lt;li&gt;Downsizing from a web host I’d undergrown meant I could re-allocate those resources.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;While this solution is cheaper in long-term costs, there was considerable investment in upskilling, setting up infrastructure, creating templates, and making mistakes. I took on mail server costs and administration (which so far has been minimal).&lt;/p&gt;
</description>
      <pubDate>Sat, 01 Mar 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/why/</guid>
    </item>
    <item>
      <title>Creating reusable content for static site generators (SSGs)</title>
      <link>https://edmar.sh/blog/static-site-transformation/content-reuse/</link>
      <description>&lt;h2 id=&quot;what-is-reusable-content%3F&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-reuse/#what-is-reusable-content%3F&quot;&gt;What is reusable content?&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;In a structured authoring environment, such as those that use &lt;a href=&quot;https://en.wikipedia.org/wiki/Darwin_Information_Typing_Architecture&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Darwin Information Typing Architecture (DITA)&lt;/a&gt;, an XML-based authoring language, you can set up &lt;a href=&quot;https://www.oxygenxml.com/doc/versions/27.1/ug-editor/topics/eppo-pathfinder-reuse.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;content reuse&lt;/em&gt;&lt;/a&gt;, or &lt;em&gt;snippets&lt;/em&gt;. Instead of copying and pasting sections into different files, you create a file that contains that small piece of content. You reference that file where it’s needed, like an include or import file.&lt;/p&gt;
&lt;p&gt;Some unstructured syntaxes and SSGs have their own implementations of reuse. However, this becomes an education and enforcement issue if you have a wide variety of contributors such as developers, product managers, subject matter experts, and technical writers. This also exposes your business to vendor lock-in: once you have the toolset implemented, it’s hard to move away from it, especially when you come to rely on features other tools don’t have.&lt;/p&gt;
&lt;h2 id=&quot;metadata-for-content-reuse&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-reuse/#metadata-for-content-reuse&quot;&gt;Metadata for content reuse&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Copy-pasted content across pages is a maintenance nightmare. Someone has to remember to update it, and also &lt;em&gt;all the places&lt;/em&gt; of the pasted content. With this in mind, I wanted to use metadata as much as possible for reuse and programmatic data access.&lt;/p&gt;
&lt;p&gt;You can use metadata (also referred to as &lt;em&gt;front matter&lt;/em&gt; or &lt;em&gt;frontmatter&lt;/em&gt;) to define page titles, keywords, and leverage built-in &lt;a href=&quot;https://www.11ty.dev/docs/collections/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;categories and tags&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The real power comes by adding custom metadata: highly structured content that expands the possibilities of the template engine and site generator. For example, I used the &lt;code&gt;description&lt;/code&gt; field for the first sentence across the site. This allowed me to programmatically display the description on cards and each blog post, and let me style descriptions separately from everything else. It also enforces structure and allows writers and contributors to &lt;em&gt;just write&lt;/em&gt;, since all of the logic is handled programmatically.&lt;/p&gt;
&lt;p&gt;Most metadata fits a key-value pair format. Here’s what a metadata block looks like in YAML format:&lt;/p&gt;
&lt;pre class=&quot;language-yml&quot;&gt;&lt;code class=&quot;language-yml&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;
&lt;span class=&quot;token key atrule&quot;&gt;title&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&#39;The how: Building the site structure&#39;&lt;/span&gt;
&lt;span class=&quot;token key atrule&quot;&gt;description&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; Putting all of the content pieces together.
&lt;span class=&quot;token key atrule&quot;&gt;tags&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;-&lt;/span&gt;strategy
&lt;span class=&quot;token key atrule&quot;&gt;featured&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean important&quot;&gt;true&lt;/span&gt;
&lt;span class=&quot;token key atrule&quot;&gt;featuredOrder&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token number&quot;&gt;3&lt;/span&gt;
&lt;span class=&quot;token key atrule&quot;&gt;FontAwesomeIcon&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; solid fa&lt;span class=&quot;token punctuation&quot;&gt;-&lt;/span&gt;file&lt;span class=&quot;token punctuation&quot;&gt;-&lt;/span&gt;waveform
&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here’s what each metadata entry does:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Fieldname&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;title&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Page title that displays on cards, grids, details pages, and browser tabs. Note that in this instance, I had to wrap the title in single quotes as there is a colon in it; this would break the page otherwise.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;description&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The first paragraph of the post.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;FontAwesomeIcon&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Specifies the &lt;a href=&quot;https://fontawesome.com/icons?t=categories&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Font Awesome icon&lt;/a&gt; to display on the homepage, grid pages, and breadcrumbs.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;featured&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays the page on a card on the homepage.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;featuredOrder&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Sets the order in which the card displays on the homepage.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Here’s an example of how this content works programmatically. This code generates cards that references the metadata fields:&lt;/p&gt;
&lt;pre class=&quot;language-markup&quot;&gt;&lt;code class=&quot;language-markup&quot;&gt;
{%- macro gridItem(item) -%}
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;bg-whitish p-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;aria-labelledby&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ item.data.title |slugify }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {% if item.data.FontAwesomeIcon %}
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;span&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;fa-{{ item.data.FontAwesomeIcon }} text-2xl text-medium-blue&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;span&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {% endif %}
            {% if item.data.cover %}
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;img&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;src&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;/assets/images/{{ item.data.cover }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ item.data.coverAlt or item.data.title }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;data-pagefind-meta&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;image[{{ item.data.cover }}], image_alt[{{ item.data.coverAlt or item.data.title }}]&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;w-full h-48 object-cover mb-2&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {% endif %}
            &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ item.url }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ item.data.title | safe }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;{{ item.data.description }}&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
{% endmacro %}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here’s what two cards look like side-by-side:
&lt;img src=&quot;https://edmar.sh/assets/images/grid-cards-example.png&quot; alt=&quot;Example result of card code&quot;&gt;&lt;/p&gt;
&lt;h2 id=&quot;auto-generated%2C-context-sensitive-links&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-reuse/#auto-generated%2C-context-sensitive-links&quot;&gt;Auto-generated, context-sensitive links&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs&quot;&gt;content stategy&lt;/a&gt; for my &lt;a href=&quot;https://edmar.sh/skills&quot;&gt;skills pages&lt;/a&gt; was to display the relevant tools and presentations for each skill. These started as bulleted lists, but it quickly became obvious that copying and pasting relevant bullets on each page wasn’t sustainable.&lt;/p&gt;
&lt;p&gt;Since there’s no database behind a static site generator, I created two &lt;code&gt;json&lt;/code&gt; files that enforce structure while remaining expandable. The first file contained information about my presentations, webinars, and guest appearances. This &lt;code&gt;json&lt;/code&gt; file contained titles, year (or years) of the item, a relevant link, the category or categories for each, the location or event venue, and type (webinar, in-person, panel discussion, podcast guest or host, etc.). Here’s an example:&lt;/p&gt;
&lt;pre class=&quot;language-json&quot;&gt;&lt;code class=&quot;language-json&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;title&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;So, you want to be a technical writer?&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;year&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;2024&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;link&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;https://www.brighttalk.com/webcast/9273/608187&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;category&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;technical-writing&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;metrics&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;content-strategy&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;marketing&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;venue&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;Content Wrangler webcast&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;type&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;webinar&quot;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The second &lt;code&gt;JSON&lt;/code&gt; file listed the tools I’ve used over my career, along with their publisher, product name, and relevant site categories. I asked AI to help me with this, because while the structure of a JSON file is relatively easy to follow, formatting is very important. Here’s my prompt:&lt;/p&gt;
&lt;pre class=&quot;language-txt&quot;&gt;&lt;code class=&quot;language-txt&quot;&gt;Think like a programmer. i want a JSON file with the following structure:
- Skill title
  - description
  - Tools used
  - Technologies used

  tools and technologies will need to be pulled into several templates, so explain how i can assign them to multiple skills&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here’s an example of the result:&lt;/p&gt;
&lt;pre class=&quot;language-json&quot;&gt;&lt;code class=&quot;language-json&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;category&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;[&lt;/span&gt;
        &lt;span class=&quot;token string&quot;&gt;&quot;technical-writing&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;token string&quot;&gt;&quot;help-authoring-tool&quot;&lt;/span&gt;
    &lt;span class=&quot;token punctuation&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;publisher&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;MadCap&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;token property&quot;&gt;&quot;title&quot;&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;Flare&quot;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then I created templates that render these structures, achieving a single source of truth that adapts to different display contexts. Here’s part of the template renders presentation data:&lt;/p&gt;
&lt;pre class=&quot;language-markup&quot;&gt;&lt;code class=&quot;language-markup&quot;&gt;{% if presentations %}
&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h2&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;Related work&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h2&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
{% set presentationsList = isPublicSpeakingPage and presentations or filteredPresentations %}
{% for presentation in presentationsList | sort(false, false, &#39;year&#39;) | reverse %}
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;div&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;presentation mb-4&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;h3&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;font-normal text-[1rem]&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {# Check if presentation has a link #}
            {% if presentation.link %}
                {{ presentation.type | capitalize }}:
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;a&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;href&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;{{ presentation.link }}&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;hover:text-success-600 italic&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
                    {{ presentation.title }}
                &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;a&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {% else %}
                {{ presentation.title }}
            {% endif %}
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;h3&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;&lt;/span&gt;p&lt;/span&gt; &lt;span class=&quot;token attr-name&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;token attr-value&quot;&gt;&lt;span class=&quot;token punctuation attr-equals&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;text-sm mt-0 jet-600&lt;span class=&quot;token punctuation&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
            {{ presentation.venue }}, {{ presentation.year }}
        &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;p&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token tag&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;&amp;lt;/&lt;/span&gt;div&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;&gt;&lt;/span&gt;&lt;/span&gt;
{% endfor %}
{% endif %}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I can now programmatically populate my skills pages with the relevant presentations and tools:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/programmatic-columns.png&quot; alt=&quot;Screen shot of relevant tools and presentations displayed on a web page&quot;&gt;&lt;/p&gt;
</description>
      <pubDate>Sun, 23 Feb 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/content-reuse/</guid>
    </item>
    <item>
      <title>The how: Building the site structure</title>
      <link>https://edmar.sh/blog/static-site-transformation/the-how/</link>
      <description>&lt;p&gt;When you start with a decade-old information architecture that evolved to include podcasts, it shouldn’t be surprising that very few parts of that structure end up in a new site.&lt;/p&gt;
&lt;p&gt;I quickly decided it wasn’t worth maintaining my old personal and professional blog posts. Most were outdated and not helpful to the portfolio I wanted the site to be.&lt;/p&gt;
&lt;h2 id=&quot;content-types&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/the-how/#content-types&quot;&gt;Content types&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I designed three main content types (page types):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Homepage, which included an intro, headshot, and galleries of the four most important, or recent, items that have been updated in three categories: podcasts, skills, and blog posts.&lt;/li&gt;
&lt;li&gt;Grid pages that are gallery pages with cards for each skill, blog post, and podcast episode.&lt;/li&gt;
&lt;li&gt;Details pages for each of the categories:
&lt;ul&gt;
&lt;li&gt;Blog posts.&lt;/li&gt;
&lt;li&gt;Podcast episodes, including show notes and an episode player.&lt;/li&gt;
&lt;li&gt;More information about each of my skills, the relevant tools used, and any relation presentations or publications I’ve created.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;separating-content-from-presentation&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/the-how/#separating-content-from-presentation&quot;&gt;Separating content from presentation&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Making this actually happen involved a &lt;em&gt;lot&lt;/em&gt; of experimenting. While I was building out the site there were grid template pages for each of those content types. Eventually I made the grid collection-agnostic.&lt;/p&gt;
&lt;p&gt;Once I grasped &lt;em&gt;how&lt;/em&gt; to use content programmatically, it opened my eyes to how much &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/content-reuse&quot;&gt;reusable structures like metadata&lt;/a&gt; make a difference in how content is sorted, filtered, and displayed.&lt;/p&gt;
&lt;p&gt;Taking an active development role made it clear to me how structuring your content helps your developers and your readers. Abstracting my content taught me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Using metadata reduces input errors.&lt;/li&gt;
&lt;li&gt;You can restrict what’s entered via pipelines and/or linters.&lt;/li&gt;
&lt;li&gt;It makes it easier for people to contribute.&lt;/li&gt;
&lt;li&gt;Sites can have a consistent voice and experience.&lt;/li&gt;
&lt;li&gt;Your content is portable and easier to publish across multiple channels.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;accessibility&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/the-how/#accessibility&quot;&gt;Accessibility&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;My wife is a developer and accessibility advocate. As a technical communicator, I wanted my site to be accessible to everyone. I was also able to programmatically use my metadata to populate &lt;code&gt;&amp;lt;alt&amp;gt;&lt;/code&gt; tags. I used the &lt;a href=&quot;https://wave.webaim.org/extension/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;WAVE browser plugin&lt;/a&gt; to test my pages and ensure they were accessible.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/wave-plugin-screenshot.png&quot; alt=&quot;Screenshot of WAVE accessibility plugin results&quot;&gt;&lt;/p&gt;
</description>
      <pubDate>Sun, 02 Feb 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/the-how/</guid>
    </item>
    <item>
      <title>The what: Creating the content strategy for my site</title>
      <link>https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/</link>
      <description>&lt;h2 id=&quot;determining-personas&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/#determining-personas&quot;&gt;Determining personas&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The first question of technical writing is &lt;em&gt;who is the user&lt;/em&gt;? The users you identify inform and guide your content strategy. In my case, my users include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Potential employers.&lt;/li&gt;
&lt;li&gt;Technical writers — both experienced and new.&lt;/li&gt;
&lt;li&gt;Listeners (and potential listeners) of my podcast.&lt;/li&gt;
&lt;li&gt;Those who want to learn about static site generators (SSGs) and/or docs-as-code.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;content-goals&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/#content-goals&quot;&gt;Content goals&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Highlight my skills to attract employers, and also as a thought experiment — what &lt;em&gt;do&lt;/em&gt; I do with content strategy?&lt;/li&gt;
&lt;li&gt;Document my migration experience from WordPress to a static site generator through a &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/#blog-release-strategy&quot;&gt;series of blog posts&lt;/a&gt; .&lt;/li&gt;
&lt;li&gt;Highlight my podcast, as the old site really didn’t. I’m considering reviving the podcast so this was a priority.&lt;/li&gt;
&lt;li&gt;Get rid of legacy content.&lt;/li&gt;
&lt;li&gt;Ensure the site is accessible.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;blog-release-strategy&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/#blog-release-strategy&quot;&gt;Blog release strategy&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;My strategy for documenting the conversion from WordPress to a static site generator (SSG) included:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Write 10-20 blog posts about the process, including:
&lt;ul&gt;
&lt;li&gt;Migration&lt;/li&gt;
&lt;li&gt;Strategy&lt;/li&gt;
&lt;li&gt;Infrastructure&lt;/li&gt;
&lt;li&gt;Build-out&lt;/li&gt;
&lt;li&gt;Frustrations&lt;/li&gt;
&lt;li&gt;Development&lt;/li&gt;
&lt;li&gt;Content creation and revision processes&lt;/li&gt;
&lt;li&gt;Takeaways&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Write four solid blog posts for the rollout.&lt;/li&gt;
&lt;li&gt;Put that content out on a regular cadence to keep content fresh and drive continuous engagement.&lt;/li&gt;
&lt;li&gt;Inspire tech writers to get more technical.&lt;/li&gt;
&lt;li&gt;Understand and explain how content is consumed programmatically.&lt;/li&gt;
&lt;li&gt;Show recruiters and employers that I was actively updating my site.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Sat, 01 Feb 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/content-strategy-for-ssgs/</guid>
    </item>
    <item>
      <title>Ed Marsh creates content and community. What can he do for you?</title>
      <link>https://edmar.sh/skills/</link>
      <description>&lt;p&gt;&lt;img src=&quot;https://edmar.sh/assets/images/content-lifecycle.png&quot; alt=&quot;Content lifecycle diagram&quot;&gt;&lt;/p&gt;
</description>
      <pubDate>Mon, 20 Jan 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/skills/</guid>
    </item>
    <item>
      <title>The where: Working with a static site generator</title>
      <link>https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator/</link>
      <description>&lt;p&gt;When rebuilding my site, it made sense to use an SSG because it’s fast, self-contained, and relevant to what we do as technical communicators. The WordPress site I had for over a decade not longer served my purpose—both technologically and maintenance. The WordPress world also evolved too far for my limited PHP skills from a decade ago to ‘just tweak’. I no longer needed the WordPress complexity, infrastructure, features, and plugins that require maintenance. Using an SSG also fit my &lt;a href=&quot;https://edmar.sh/blog/static-site-transformation/why/&quot;&gt;cost reduction goal&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The good news is there are a lot of static site generators to choose from, and that they all work similarly. The bad news is there are a lot of static site generators to choose from, and that they all work similarly. Once you learn the basic principles, it’s easier to figure out the nuances of each SSG and decide which is best for you.&lt;/p&gt;
&lt;p&gt;Working with SSGs is &lt;em&gt;not&lt;/em&gt; a plug and play experience. In a prior role, our output went through a heavily customized version of &lt;a href=&quot;https://gatsbyjs.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Gatsby&lt;/a&gt;. I wasn’t hands-on with it because we needed a team of developers to support it.&lt;/p&gt;
&lt;h2 id=&quot;my-ssg-requirements&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator/#my-ssg-requirements&quot;&gt;My SSG requirements&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;These were my requirements when choosing an SSG:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;As plug-and-play as possible (in retrospect, ha!). I can play with HTML, CSS, and configuration and template files, but I don’t have a dev team behind me. Nor did I have time to learn modern JavaScript or Typescript.&lt;/li&gt;
&lt;li&gt;Well-supported.&lt;/li&gt;
&lt;li&gt;Quick time to market — I needed to quickly build out the site to be relevant to my job search.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;the-learning-process&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator/#the-learning-process&quot;&gt;The learning process&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The important part to understand is that the SSG is just a generator. There are parameters and configuration, but what SSGs do is display the content you create through templates. The key takeaway was making sure to structure my content, regardless of the tools.&lt;/p&gt;
&lt;p&gt;I had time, so I watched videos, read tutorials and blogs, looked up the pros and cons of templating approaches, and the SSG choice itself. I started to learn with the &lt;a href=&quot;https://gohugo.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Hugo SSG&lt;/a&gt;. Eventually I moved to &lt;a href=&quot;https://eleventy.dev&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Eleventy (11ty)&lt;/a&gt;. Why? Not surprisingly, a &lt;em&gt;lack of documentation&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Eleventy’s docs aren’t much better, but its infrastructure is more open. Since I didn’t know anything about Eleventy, I stayed with its default &lt;a href=&quot;https://mozilla.github.io/nunjucks/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Nunjucks templating language&lt;/a&gt;, which ultimately renders the HTML in your output. It’s based on the &lt;a href=&quot;https://liquidjs.com/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Liquid templating language&lt;/a&gt; so there was a lot of history and documentation to refer to. Amusingly, I found during the process that &lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-4-curse-of-knowledge-with-tom-johnson/&quot;&gt;Tom Johnson referenced Liquid&lt;/a&gt; in our podcast together almost 10 years ago.&lt;/p&gt;
&lt;h2 id=&quot;lessons-learned&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator/#lessons-learned&quot;&gt;Lessons learned&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;When you decide to build a website from scratch with an SSG, you’re building it from &lt;em&gt;scratch&lt;/em&gt;. Every SSG has starter themes and frameworks, but at that stage of the process, I didn’t understand enough about how SSGs worked to know how to properly use those themes. I also had the time and inclination to learn some new tech, so I decided to play every role of developing a website to help me appreciate how content is programmatically consumed.&lt;/p&gt;
&lt;p&gt;I started building the site during the winter holiday downtime. It took me about three weeks to start “getting” how it all works. Does that mean it came quickly and easily? No. There were many “why isn’t this thing that’s supposed to &lt;em&gt;work&lt;/em&gt; not working?” moments. Once I realized this is part of the process, it made it easier for me to look at this as a learning experience (if only it were that easy…).&lt;/p&gt;
</description>
      <pubDate>Sun, 12 Jan 2025 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/blog/static-site-transformation/choosing-static-site-generator/</guid>
    </item>
    <item>
      <title>Sink and swim situation with Ann Rockley</title>
      <link>https://edmar.sh/podcasts/sink-and-swim-situation-with-ann-rockley-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/sink-and-swim-situation-with-ann-rockley-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.stc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Society for Technical Communication (STC)&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://rockley.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Rockley Group&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.kolbe.com/kolbe-a-index/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Kolbe assessment&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://rockley.com/rockley-resilient-team-advantage/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Resilient Team Advantage&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 28 Jan 2022 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/sink-and-swim-situation-with-ann-rockley-content-content-podcast/</guid>
    </item>
    <item>
      <title>A really fancy webform with Patrick Bosek</title>
      <link>https://edmar.sh/podcasts/a-really-fancy-webform-with-patrick-bosek-content-content-podcast/</link>
      <description>&lt;blockquote&gt;
&lt;p&gt;This episode was recorded before Patrick’s company changed its name to Heretto.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/a-really-fancy-webform-with-patrick-bosek-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.dita-ot.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA Open Toolkit&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://openai.com/blog/gpt-3-apps/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;GPT3&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.scriptorium.com/content-strategy-experts-podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scriptorium podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.snackable.ai/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Snackable&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/patrickbosek&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;@patrickbosek&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/easydita&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;@easydita&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.twitter.com/heretto&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;@heretto&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://heretto.com/talk-shows/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content and Coffee podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/us/podcast/content-components/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Components podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Mon, 27 Sep 2021 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/a-really-fancy-webform-with-patrick-bosek-content-content-podcast/</guid>
    </item>
    <item>
      <title>Clarity over consistency with MJ Babic</title>
      <link>https://edmar.sh/podcasts/clarity-over-consistency-with-mj-babic-content-content-podcast/</link>
      <description>&lt;p&gt;MJ’s had a diverse career, from marketing, feature articles, science journals, and tech writing. But her plan is “helping people complete their tasks with digital products”, and to “bring good writing to whatever corner I’m working in at the moment”.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/clarity-over-consistency-with-mj-babic-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/maryjeanbabic/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;MJ on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://usertesting.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;usertesting.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://alistapart.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;A List Apart&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.smashingmagazine.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Smashing Magazine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.boswords.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Boswords&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://uxwritinghub.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;UX Writing Hub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Streeteries&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://mjbabic.medium.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;MJ on Medium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.torreypodmajersky.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Strategic Writing for UX&lt;/em&gt;, Torrey Podmajersky&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://smile.amazon.com/dp/B082J3Z8R1/ref=dp-kindle-redirect?_encoding=UTF8&amp;amp;btkr=1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Writing Is Designing: Words and the User Experience&lt;/em&gt;, Michael J. Metts and Andy Welfle&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 08 Jun 2021 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/clarity-over-consistency-with-mj-babic-content-content-podcast/</guid>
    </item>
    <item>
      <title>Not acting like slow computers with Rahel Bailie</title>
      <link>https://edmar.sh/podcasts/not-acting-like-slow-computers-with-rahel-bailie-content-content-podcast/</link>
      <description>&lt;p&gt;Her &lt;a href=&quot;https://smile.amazon.com/Content-Strategy-Connecting-Business-Benefits/dp/1937434168/ref=sr_1_1?dchild=1&amp;amp;keywords=rahel+bailie&amp;amp;qid=1618343360&amp;amp;sr=8-1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Content Strategy&lt;/em&gt; book&lt;/a&gt; with &lt;a href=&quot;https://edmar.sh/podcasts/1000-or-100000-meetings-with-noz-urbina-content-content-podcast/&quot;&gt;Noz Urbina&lt;/a&gt; remains one of Ed’s most highlighted (highlit?) reads. We discuss Content Operations (ContentOps or DocOps), introducing efficiency, and more. I hope you laugh as much as we did.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/not-acting-like-slow-computers-with-rahel-bailie-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/i-have-issues-with-slide-decks-with-scott-abel-content-content-podcast/&quot;&gt;Scott Abel, the Content Wrangler&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://rahelab.medium.com/an-uneven-history-of-content-strategy-d514cfd7eee5&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;An uneven history of content strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.backtothefuture.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Back to the Future&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://deanebarker.net/tech/blog/need-for-content-operations/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Deane Barker &lt;em&gt;The need for content operations&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://rockley.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ann Rockley&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://pandoc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Pandoc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/rahelab&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rahel on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/rahelannebailie/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rahel on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://contentseriously.co.uk/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rahel’s site&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Rave&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Raving&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://schema.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Schema.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://errata-ai.gitbook.io/vale/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Vale linter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://code.visualstudio.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Visual Studio (VS) Code&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 14 Apr 2021 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/not-acting-like-slow-computers-with-rahel-bailie-content-content-podcast/</guid>
    </item>
    <item>
      <title>All the things in my Venn diagram with Alisa Bonsignore</title>
      <link>https://edmar.sh/podcasts/all-the-things-in-my-venn-diagram-with-alisa-bonsignore-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/all-the-things-in-my-venn-diagram-with-alisa-bonsignore-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://clarifyingcomplexideas.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alisa’s business - Clarifying Complex Ideas&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/clearwriter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alisa on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amwa.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;American Medical Writers Association&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/melissabreker?lang=en&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Melissa Breker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/off-wall-presentations-featuring-ben-woelk-content-content-podcast-episode-11/&quot;&gt;Content Content podcast with Ben Woelk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/installation-not-user-task-featuring-andrea-ames-content-content-podcast-episode-21&quot;&gt;Content Content podcast with Andrea Ames&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 30 Sep 2020 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/all-the-things-in-my-venn-diagram-with-alisa-bonsignore-content-content-podcast/</guid>
    </item>
    <item>
      <title>Four engineers and an English major with Michael Miller</title>
      <link>https://edmar.sh/podcasts/four-engineers-and-an-english-major-with-michael-miller-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/four-engineers-and-an-english-major-with-michael-miller-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-4-curse-of-knowledge-with-tom-johnson/&quot;&gt;Curse of Knowledge with Tom Johnson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/xml-is-a-four-letter-word-with-alan-j-porter-content-content-podcast/&quot;&gt;XML is a four-letter word with Alan J. Porter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/&quot;&gt;Time as a tool with Alan Houser&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.barebones.com/products/bbedit/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;BBEdit&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.genesys.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Genesys&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.salesforce.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Salesforce&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.indianapolismotorspeedway.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Indianapolis Motor Speedway&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/IndyCar#Split_with_CART&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The IndyCar &amp;quot;split&lt;/a&gt;&amp;quot;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://racer.com/2015/02/25/indycar-2018-by-motorsport-studies-students-at-iupui/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;IndyCar 2018 by IUPUI Motorsports Studies students&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.relay.fm&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Relay FM&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.relay.fm/connected&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Connected podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.relay.fm/cortex&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cortex podcast&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 23 Jul 2020 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/four-engineers-and-an-english-major-with-michael-miller-content-content-podcast/</guid>
    </item>
    <item>
      <title>Value-oriented outcomes with Sara Feldman</title>
      <link>https://edmar.sh/podcasts/value-oriented-outcomes-with-sara-feldman-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/value-oriented-outcomes-with-sara-feldman-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/theedmarsh/timeless-techcomm-tips-stc-new-england-interchange-keynote-2020&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ESET software&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.thinkwithgoogle.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Think with Google&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/theedmarsh/timeless-techcomm-tips-stc-new-england-interchange-keynote-2020&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;What’s in it for me (WIIFM) - Ed Marsh’s STC InterChange keynote presentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://benwoelk.com/hope-for-the-introvert-podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ben Woelk’s Hope for the Introvert podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/user/pegzch&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rick Beato on YouTube&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/user/MatchGameProductions&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Match Game&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 19 May 2020 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/value-oriented-outcomes-with-sara-feldman-content-content-podcast/</guid>
    </item>
    <item>
      <title>1,000 or 100,000 meetings with Noz Urbina</title>
      <link>https://edmar.sh/podcasts/1000-or-100000-meetings-with-noz-urbina-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/1000-or-100000-meetings-with-noz-urbina-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/SoftQuad_Software&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Softquad&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://xmetal.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;XMetaL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://mekon.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mekon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://congility.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Congility&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://omnichannelx.digital&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OmniX conference&lt;/a&gt; - get €50 off with the code &lt;strong&gt;50urbi&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.tanzenconsulting.com/about-1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Carrie Hane&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://smile.amazon.com/dp/B07PQX1TRQ/ref=dp-kindle-redirect?_encoding=UTF8&amp;amp;btkr=1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Strategy: Connecting the dots between business, brand, and benefits&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 07 Apr 2020 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/1000-or-100000-meetings-with-noz-urbina-content-content-podcast/</guid>
    </item>
    <item>
      <title>Fluffy experience with Hannah Kirk</title>
      <link>https://edmar.sh/podcasts/fluffy-experience-with-hannah-kirk-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/fluffy-experience-with-hannah-kirk-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cherryleaf.com/podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Livefyre&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.gatsbyjs.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;GatsbyJS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://docusaurus.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Docusaurus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://docs.oasis-open.org/dita/LwDITA/v1.0/cnprd01/LwDITA-v1.0-cnprd01.html#what-is-lwdita&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;MDITA/Lightweight DITA&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://xmetal.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;XMetaL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cherryleaf.com/podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Trends in Technical Communication for 2020 and beyond - Cherryleaf Podcast episode 76&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Type-in_program&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Type-in programs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://medium.com/@pinkhairCS&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Hannah on Medium&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 11 Feb 2020 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/fluffy-experience-with-hannah-kirk-content-content-podcast/</guid>
    </item>
    <item>
      <title>I like the Ms with Phylise Banner</title>
      <link>https://edmar.sh/podcasts/i-like-the-ms-with-phylise-banner-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/i-like-the-ms-with-phylise-banner-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/All_but_dissertation&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ABD (all but dissertation)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://blog.insynctraining.com/modern-learning-resource-library/tag/modern-learning-on-the-air&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Modern Learning podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/All_but_dissertation&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Luke Wroblewski&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www2.ed.gov/policy/gen/guid/fpco/ferpa/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;FERPA - Family Educational Rights and Privacy Act&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Amphicar&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Amphicar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Piper_PA-28_Cherokee&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Piper Cherokee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/matthewrpierce/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Matt Pierce&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://snapsynapse.com/writings-recordings/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sam Rogers&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 27 Dec 2019 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/i-like-the-ms-with-phylise-banner-content-content-podcast/</guid>
    </item>
    <item>
      <title>We&#39;re gonna do this together with Viqui Dill</title>
      <link>https://edmar.sh/podcasts/were-gonna-do-this-together-with-viqui-dill-content-content-podcast/</link>
      <description>&lt;p&gt;Viqui is also an accomplished ‘bad-ass bass player’ and a self-proclaimed techcomm evangelist.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/were-gonna-do-this-together-with-viqui-dill-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.merriam-webster.com/dictionary/gully%20washer&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Gully Washer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://woodmarkcabinetry.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;American Woodmark&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.2020spaces.com/2020products/2020design/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;2020 design software&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stcidlsig.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Instructional Design and Learning (IDL) Special Interest Group (SIG)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://wdcb.stcwdc.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC DC Metro chapter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stcpmc.org/conferences/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Philadelphia CONDUIT conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/viqui_dill&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Viqui on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://slideshare.net/viqui_dill&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Viqui on SlideShare&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/viqui_dill/powerofstory-the-cultural-program-that-got-me-clicks-139624000&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Power of Story&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Djembe&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Djembe&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://english.gmu.edu/people/hlawren2&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dr Heidi Lawrence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/501(c)(3)_organization&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;501©(3) corporation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stc-gmu.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC George Mason University chapter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=VwsrzbV47tk&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed’s presentation for the STC IDL SIG - Driving your Docs with Data&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 26 Jun 2019 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/were-gonna-do-this-together-with-viqui-dill-content-content-podcast/</guid>
    </item>
    <item>
      <title>XML is a four-letter word with Alan J. Porter</title>
      <link>https://edmar.sh/podcasts/xml-is-a-four-letter-word-with-alan-j-porter-content-content-podcast/</link>
      <description>&lt;p&gt;Alan is also an accomplished author and critic of comics, pop culture, sci-fi, and more.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/xml-is-a-four-letter-word-with-alan-j-porter-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/XyWrite&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;XyWrite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.xml.com/pub/a/SeyboldReport/ps251901.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Grif&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://public.s1000d.org/Pages/Home.aspx&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;S1000D&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.circuitoftheamericas.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Circuit of the Americas&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dita4publishers.org/d4p-users-guide/user_docs/d4p-users-guide/word2dita/w2d-getting-started.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Word2DITA plug-in by Eliot Kimber&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.cat.com/en_US.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Caterpillar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Concorde&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Concorde&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://whiterocket.podbean.com/e/open-wheel-2018-year-end-review-f1-indycar&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alan’s Open Wheel podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/napoleons-shakespeares-teresa-meek-content-content-podcast-14/&quot;&gt;Napoleons and Shakespeares with Teresa Meek – Content Content podcast episode 14&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/experiences-have-to-be-assembled-with-cruce-saunders-content-content-podcast/&quot;&gt;Experiences have to be assembled with Cruce Saunders – Content Content podcast&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 14 Mar 2019 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/xml-is-a-four-letter-word-with-alan-j-porter-content-content-podcast/</guid>
    </item>
    <item>
      <title>I have issues with slide decks with Scott Abel</title>
      <link>https://edmar.sh/podcasts/i-have-issues-with-slide-decks-with-scott-abel-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/i-have-issues-with-slide-decks-with-scott-abel-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://rockley.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ann Rockley&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://smile.amazon.com/dp/B00794UE74/ref=dp-kindle-redirect?_encoding=UTF8&amp;amp;btkr=1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Managing Enterprise content&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/scottabel&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/contentwrangler&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Content Wrangler on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.contenttechsummit.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Intelligent Content Conference&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://scriptorium.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scriptorium&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.hhs.gov/hipaa/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;HIPAA&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://medium.com/@scottabel&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott on Medium&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 20 Nov 2018 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/i-have-issues-with-slide-decks-with-scott-abel-content-content-podcast/</guid>
    </item>
    <item>
      <title>Experiences have to be assembled with Cruce Saunders</title>
      <link>https://edmar.sh/podcasts/experiences-have-to-be-assembled-with-cruce-saunders-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/experiences-have-to-be-assembled-with-cruce-saunders-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.gollner.ca/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Joe Gollner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.fasb.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Financial Accounting Standards Board (FASB)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.adobe.com/marketing/experience-manager.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Adobe Experience Manager (AEM)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://chiefmartec.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott Brinker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://mayoclinic.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mayo Clinic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://daringfireball.net/projects/markdown/syntax&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Markdown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://asciidoc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;AsciiDoc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://docutils.sourceforge.net/rst.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;reStructured Text&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ashlandproductions.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ashland&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://code.visualstudio.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Microsoft Visual Studio Code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://simplea.com/Resources/Podcasts&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Towards a smarter world podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/simpleateam&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;[A] on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/mrcruce&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cruce on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 14 Sep 2018 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/experiences-have-to-be-assembled-with-cruce-saunders-content-content-podcast/</guid>
    </item>
    <item>
      <title>Holding somebody else&#39;s place with Sean Heckman</title>
      <link>https://edmar.sh/podcasts/holding-somebody-elses-place-with-sean-heckman-content-content-podcast/</link>
      <description>&lt;p&gt;Learn what it’s like to drive across the USA for 30+ days interviewing racing legends, while running a content creation business that caters to small businesses. Find out why Sean calls a “sport with science, technology, and a lot of nonsense” his home.&lt;/p&gt;
&lt;p&gt;I’ve never met Sean, and he was as curious about me as I was about him. Sean says he’s not a journalist, but he is. He gets people to talk, listens to their stories, and responds to them. He also has an immensely dry sense of humor. I literally had to stop dozens of times while editing this podcast to stop laughing. Give this a listen.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/holding-somebody-elses-place-with-sean-heckman-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.imdb.com/name/nm1987706/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sean’s work on IMDB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Adrian_Fernandez&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Adrian Fernandez&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Emerson_Fittipaldi&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Emerson Fittipaldi&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Ryan_Eversley&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ryan Eversley&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/RyanEversley&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ryan Eversley on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sportscarchampionship.imsa.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;IMSA WeatherTech SportsCar championship&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blubrry.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Blubrry podcast statistics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.netflix.com/title/80118100&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott Tucker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.netflix.com/title/80118100&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Dirty Money&lt;/em&gt;- Netflix&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/The_Nerdist_Podcast&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Chris Hardwick — Nerdist Podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://wtfpod.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;WTF podcast with Marc Maron&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dinnerwithracers.com/ep-69-mario-andretti-pt-1/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dinner with Racers with Mario Andretti&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dinnerwithracers.com/ep-66-craig-hampson&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Craig Hampson episode&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.google.com/search?q=dario+franchitti+hair&amp;amp;newwindow=1&amp;amp;client=firefox-b-1&amp;amp;tbm=isch&amp;amp;tbo=u&amp;amp;source=univ&amp;amp;sa=X&amp;amp;ved=0ahUKEwiPk6Xt5cLaAhXkUt8KHSNKBGkQsAQIJw&amp;amp;biw=2133&amp;amp;bih=1067&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dario Franchitti’s hair&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.instagram.com/sean.heckman/?hl=en&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sean on Instagram&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 20 Apr 2018 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/holding-somebody-elses-place-with-sean-heckman-content-content-podcast/</guid>
    </item>
    <item>
      <title>I can eat glass with Keith Schengili-Roberts</title>
      <link>https://edmar.sh/podcasts/i-can-eat-glass-with-keith-schengili-roberts-content-content-podcast-episode-22/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/i-can-eat-glass-with-keith-schengili-roberts-content-content-podcast-episode-22/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/I_Can_Eat_Glass&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;I can eat glass test&lt;/a&gt;  &lt;a href=&quot;https://en.wikipedia.org/wiki/Delrina&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Delrina&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://smile.amazon.com/Advanced-HTML-Companion-Second/dp/0126235422&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Advanced HTML Companion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/The_Computer_Paper&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Computer Paper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/ATI_Technologies&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ATI graphics cards&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://mekon.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mekon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ditawriter.com/what-i-learned-from-the-dita-listening-sessions-part-1/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA listening sessions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/KeithSchengiliRoberts?utm_campaign=profiletracking&amp;amp;utm_medium=sssite&amp;amp;utm_source=ssslideview&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Keith’s SlideShare&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/JackMolisani1/keith-schengiliroberts-dita-worst-practices&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA worst practices&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://captmondo.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Captain Mondo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;MarkDown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://asciidoc.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;AsciiDoc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ditawriter.com/don-day-and-michael-priestley-on-the-beginnings-of-dita-part-1/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The beginnings of DITA part 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ditawriter.com/don-day-and-michael-priestley-on-the-beginnings-of-dita-part-2/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The beginnings of DITA part 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.oasis-open.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OASIS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=dita-adoption&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OASIS DITA adoption committee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cestwhat.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;C’est what Toronto&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://commons.wikimedia.org/w/index.php?search=author%3DKeith+Schengili-Roberts&amp;amp;title=Special:Search&amp;amp;profile=default&amp;amp;fulltext=1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Keith’s Wikimedia Commons contributions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://smile.amazon.com/dp/B002MY9HL0/ref=dp-kindle-redirect?_encoding=UTF8&amp;amp;btkr=1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Curse of the Labrador Duck&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/ditawriter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Keith on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.scriptorium.com/2018/02/podcasting-strategy-podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed on the Scriptorium podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stcidlsig.org/march-15-2018-data-analytics-webinar-with-ed-marsh/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed’s Data-driven content webinar&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 13 Mar 2018 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/i-can-eat-glass-with-keith-schengili-roberts-content-content-podcast-episode-22/</guid>
    </item>
    <item>
      <title>Installation is not a user task with Andrea Ames</title>
      <link>https://edmar.sh/podcasts/installation-not-user-task-featuring-andrea-ames-content-content-podcast-episode-21/</link>
      <description>&lt;p&gt;Andrea is the CEO of &lt;a href=&quot;https://idyllpointgroup.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Idyll Point Group&lt;/a&gt;, after a long stint in content strategy and content experience strategy at IBM.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/installation-not-user-task-featuring-andrea-ames-content-content-podcast-episode-21/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.facebook.com/IdyllPointGroup/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Idyll Point Group on Facebook&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.idyllpointgroup.com/podcast&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Andrea’s &lt;em&gt;Content Hacker&lt;/em&gt; podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ditawriter.com/don-day-and-michael-priestley-on-the-beginnings-of-dita-part-1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Don Day and Michael Priestley on the beginnings of DITA part 1 - DITAWriter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ditawriter.com/don-day-and-michael-priestly-on-the-beginnings-of-dita-part-2&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Don Day and Michael Priestley on the beginnings of DITA part 2 - DITAWriter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/intercom/editorial-calendar&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Intercom magazine editorial calendar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amyporterfield.com/amy-porterfield-podcast&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Amy Porterfield’s podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https:michaelhyatt.com/leadtowin&quot;&gt;Michael Hyatt’s &lt;em&gt;Lead to Win&lt;/em&gt; podcast&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://michaelhyatt.com/podcast-afraid-to-set-goals&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Michael Hyatt talks about his fear of speaking&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://whitneyq.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Whitney Quesenbery&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;h3&amp;gt;Enterprise Marketer podcasts&amp;lt;/h3&amp;gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://enterprisemarketer.com/podcasts/enterprise-marketer-podcast-conference/icc-show-50-poker-game&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Poker with Andrea Fryrear, Robert Rose, Buddy Scalera, and Matthew Balogh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://enterprisemarketer.com/podcasts/enterprise-marketer-podcast-conference/52-andrea-ames&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Andrea on the Enterprise Marketer podcast&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 23 Jan 2018 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/installation-not-user-task-featuring-andrea-ames-content-content-podcast-episode-21/</guid>
    </item>
    <item>
      <title>The price is right with Tim Esposito</title>
      <link>https://edmar.sh/podcasts/price-right-tim-esposito-content-content-podcast-episode-20/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/price-right-tim-esposito-content-content-podcast-episode-20/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://tmesposit.wordpress.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tim’s site&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/tmesposit&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tim on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://tmesposit.wordpress.com/bonus-materials/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tim’s “Bonus materials” page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.nps.gov/seki/index.htm&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Kings Canyon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.yosemitehikes.com/yosemite-valley/half-dome/half-dome.htm&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Yosemite Half Dome&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stcpmc.org/conferences/conduit-2018/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;2018 STC Philadelphia Metro CONDUIT conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stcpmc.org/conferences/conduit-2018/submit-proposals-for-conduit-2018/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Submit proposals for the 2018 STC Philadelphia Metro CONDUIT conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/&quot;&gt;Content Content Podcast — Time as a Tool — featuring Alan Houser — episode 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-fire-fingers-featuring-danielle-villegas-episode-3/&quot;&gt;Content Content podcast episode 3 - Fire fingers with Danielle Villegas&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Elm_(email_client)&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Elm email client&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Vi&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Vi text editor&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/G-Log&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;G-Log&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://cardsagainsthumanity.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cards against humanity&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.thebeerstorepa.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The Beer Store&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stc-rochester.org/spectrum&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Rochester Spectrum conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stcnewengland.org/interchange&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC New England Interchange conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/committees/distinguished-community-service-awards-committee/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Distinguished Community Service Awards Committee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cac-stc.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Community Affairs Committee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cheltenhamtownship.org/pview.aspx?id=3066&amp;amp;catID=26&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cheltenham Township Historical Commission&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 30 Nov 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/price-right-tim-esposito-content-content-podcast-episode-20/</guid>
    </item>
    <item>
      <title>Same mess different tools with Liz Fraley</title>
      <link>https://edmar.sh/podcasts/same-mess-different-tools-with-liz-fraley-content-content-episode-19/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/same-mess-different-tools-with-liz-fraley-content-content-episode-19/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://social.single-sourcing.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Single Sourcing social media and public projects&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.tccamp.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;TC Camp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.tcdojo.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;TC Dojo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://arbortext.training&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Liz’s books&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.single-sourcing.com/2010/01/benefits-of-dynamic-information-delivery-for-life-sciences/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Benefits of dynamic product information delivery for life sciences&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://ditawriter.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Keith Schengili-Roberts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://scottoline.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lisa Scottoline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/ditaguy&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Michael Priestley&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sigdoc.acm.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ACM sigdoc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.online-convert.com/file-format/lit&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Microsoft .Lit file&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Interleaf&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Interleaf&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://oxygenxml.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;oXygen XML Editor&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.antennahouse.com/antenna1/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Antenna House&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dita-ot.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA Open Toolkit&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://dita.xml.org/wiki/pdf2-with-fop&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;FOP DITA rendering engine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://support.ptc.com/products/arbortext/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Arbortext&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.precisioncontent.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rob Hanna - Precision Content&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ixiasoft.com/en/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ixiasoft&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://summit.stc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Summit&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://leximation.com/aboutscott.php&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott Prentice&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/&quot;&gt;Alan Houser&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Moral-Politics-Liberals-Conservatives-Think/dp/0226467716&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;George Lakoff - &lt;em&gt;Moral Politics&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 12 Sep 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/same-mess-different-tools-with-liz-fraley-content-content-episode-19/</guid>
    </item>
    <item>
      <title>Emo analytics with Allie Proff</title>
      <link>https://edmar.sh/podcasts/emo-analytics-with-allie-proff-content-content-episode-17/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/emo-analytics-with-allie-proff-content-content-episode-17/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/allieproff&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Allie on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/techniceclectic&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Allie’s technical writing twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://linkedin.com/in/allieproff&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Allie on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.affectiva.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Affectiva&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.public.navy.mil/surflant/cg72/Pages/default.aspx&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;USS Vella Gulf&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.ted.com/talks/brene_brown_on_vulnerability&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Brene Brown: the power of vulnerability&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/notebook/speaking-the-stc-summit/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Allie’s column:&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/notebook/speaking-the-stc-summit/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Speaking the STC Summit&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.facebook.com/facebook/videos/10153253485431729/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;How to change your Facebook password video&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.appcues.com/blog/how-turbotax-makes-a-dreadful-user-experience-a-delightful-one/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;How TurboTax makes a dreadful user experience a delightful one&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.technicallyeclectic.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;technically eclectic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.voiceandtone.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mailchimp’s style guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://snomoms.wordpress.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Snohomish County Mothers of Multiples (SNOMOMS)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/like-thomas-pynchon-pawel-kowaluk-content-content-episode-16/&quot;&gt;Be like Thomas Pynchon with Pawel Kowaluk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.ingress.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ingress the game&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.pokemongo.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Pokemon Go&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-7-curious-about-content-featuring-david-dylan-thomas&quot;&gt;Content Content podcast episode 7 — Curious about content with David Dylan Thomas&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/ok-pause-featuring-alyssa-fox-content-content-podcast-episode-13/&quot;&gt;It’s OK to pause featuring Alyssa Fox&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 26 Jul 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/emo-analytics-with-allie-proff-content-content-episode-17/</guid>
    </item>
    <item>
      <title>Be like Thomas Pynchon with Pawel Kowaluk</title>
      <link>https://edmar.sh/podcasts/like-thomas-pynchon-pawel-kowaluk-content-content-episode-16/</link>
      <description>&lt;blockquote&gt;
&lt;p&gt;After recording, we became aware that Pawel left the Soap! Conference team after one year. To further clarify, Pawel did not have a role in the formation of MeetContent, though he is an active member of the community. Content Content regrets any confusion or offense to those involved.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/like-thomas-pynchon-pawel-kowaluk-content-content-episode-16/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://meetcontent.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Meet Content&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://techwriter.pl&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Techwriter.pl&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://soapconf.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Soap! Conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://itcqf.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;International Technical Communication Qualifications Foundation (ITCQF)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Thomas_Pynchon&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Thomas Pynchon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.meetup.com/Poland-MadCap-Flare-User-Group/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Poland Madcap Flare User Group&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/users-or-people-with-jack-molisani-content-content-episode-15/&quot;&gt;Users or people with Jack Molisani&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Markdown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/edmarsh/status/861946935112077312&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;“Life begins when you step out of your comfort zone”- Pam Noreault&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.tutor2u.net/business/reference/motivation-pink-three-elements-of-intrinsic-motivation&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Daniel Pink’s theory of motivation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/certification/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Society for Technical Communication (STC) Certified Professional Technical Communicator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Flash_fiction&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Flash fiction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://kwlk.pl/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Pawel’s flash fiction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/PawelKowaluk&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Pawel on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 27 Jun 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/like-thomas-pynchon-pawel-kowaluk-content-content-episode-16/</guid>
    </item>
    <item>
      <title>Users or people with Jack Molisani</title>
      <link>https://edmar.sh/podcasts/users-or-people-with-jack-molisani-content-content-episode-15/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/users-or-people-with-jack-molisani-content-content-episode-15/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/jackmolisani&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Jack on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Be-Captain-Your-Career-Advancement/dp/0962709026&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Jack’s book: &lt;em&gt;Be the Captain of Your Career: A New Approach to Career Planning and Advancement&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/aames&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Andrea Ames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/joegollner&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Joe Gollner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.gnostyx.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Gnostyx&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/meaningmeasure&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Misty Weaver&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://mindtouch.com/resources/author/arihoffman&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ari Hoffman of Mindtouch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://gplb.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;IndyCar Grand Prix of Long Beach&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://prospringstaffing.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ProSpring Staffing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lavacon.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The LavaCon Content Strategy Conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/theedmarsh/drive-your-docs-with-data-conduit-conference-2017&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Drive your docs with data - 2017 CONDUIT conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.slideshare.net/search/slideshow?searchfrom=header&amp;amp;q=%23lavacon&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;SlideShare #LavaCon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stcpmc.org/conferences/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Philly Metro conference&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Mon, 24 Apr 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/users-or-people-with-jack-molisani-content-content-episode-15/</guid>
    </item>
    <item>
      <title>Napoleons and Shakespeares with Teresa Meek</title>
      <link>https://edmar.sh/podcasts/napoleons-shakespeares-teresa-meek-content-content-podcast-14/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/napoleons-shakespeares-teresa-meek-content-content-podcast-14/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.teresameek.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Teresa’s web site&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/domesticus1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Teresa on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://domesticus.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Teresa’s personal blog - Domesticus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Say-Feeling-Business-Writing-Internet-ebook/dp/B00BLU16HY/ref=sr_1_1?ie=UTF8&amp;amp;qid=1486680329&amp;amp;sr=8-1&amp;amp;keywords=teresa+meek+say+it+with+feeling&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Teresa’s book - &lt;em&gt;Say it with feeling! Business Writing in the Internet Age&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.quora.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Quora&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://contentmarketingworld.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Marketing World&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://contentmarketinginstitute.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Marketing Institute&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Flo_(Progressive)&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Flo - Progressive Insurance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.ebyline.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;eByline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://contently.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Contently&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.skyword.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Skyword&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Janet-Burroway/e/B001IGJR54/ref=sr_ntt_srch_lnk_4?qid=1486680460&amp;amp;sr=1-4&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Janet Burroway&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016/ref=sr_1_1?s=books&amp;amp;ie=UTF8&amp;amp;qid=1486680523&amp;amp;sr=1-1&amp;amp;keywords=bird+by+bird&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Anne Lamott - &lt;em&gt;Bird by Bird: Some Instructions on Writing and Life&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Writing-Memoir-Craft-Stephen-King-ebook/dp/B000FC0SIM/ref=sr_1_1?s=books&amp;amp;ie=UTF8&amp;amp;qid=1486680582&amp;amp;sr=1-1&amp;amp;keywords=steven+king+on+writing&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Steven King - &lt;em&gt;On Writing: A Memoir Of The Craft&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 14 Feb 2017 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/napoleons-shakespeares-teresa-meek-content-content-podcast-14/</guid>
    </item>
    <item>
      <title>It&#39;s OK to pause with Alyssa Fox</title>
      <link>https://edmar.sh/podcasts/ok-pause-featuring-alyssa-fox-content-content-podcast-episode-13/</link>
      <description>&lt;p&gt;We also discuss managing people “fairly, not equally”, why content strategy is difficult, multinational technical communication teams, fashion, and more.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/ok-pause-featuring-alyssa-fox-content-content-podcast-episode-13/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/afox98&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alyssa on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://mindtouch.com/resources/announcing-top-200-recognized-content-strategists-2016&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mindtouch’s top 200 content strategists for 2016&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.tamu.edu/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Texas A&amp;amp;M University&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Quiet-Power-Introverts-World-Talking/dp/0307352153&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Quiet&lt;/em&gt; by Susan Cain&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/wiki/governance/board-meeting-summaries/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Board meeting summaries&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.stcpmc.org/conferences/conduit-2017/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Philadelphia Metro CONDUIT conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slideshare.net/afox98&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alyssa’s Slideshare&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slideshare.net/theedmarsh/tccamp-2016-social-media-and-podcasting-for-tech-communicators&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed’s TC Camp presentation on social media and podcasting&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 15 Nov 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/ok-pause-featuring-alyssa-fox-content-content-podcast-episode-13/</guid>
    </item>
    <item>
      <title>Local needs of content with Bill Swallow</title>
      <link>https://edmar.sh/podcasts/local-needs-content-featuring-bill-swallow-content-content-podcast-episode-12/</link>
      <description>&lt;p&gt;Released on &lt;a href=&quot;https://internationalpodcastday.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;International Podcast Day!&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/local-needs-content-featuring-bill-swallow-content-content-podcast-episode-12/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/billswallow&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Bill on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-8-fairly-random-events-featuring-sarah-okeefe/&quot;&gt;Content Content podcast with Sarah O’Keefe&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://rpi.edu&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rensselaer Polytechnic Institute&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slideshare.net/InfoDevWorld/localization-planning-and-the-content-strategy-of-things-with-bill-swallow&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Bill’s presentation: Localization Planning and The Content Strategy of Things&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tccamp.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Techcomm camp (TCCamp)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slideshare.net/theedmarsh/tccamp-2016-social-media-and-podcasting-for-tech-communicators&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed’s TC Camp presentation - social media and podcasting for technical communicators&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.oldesaratogabrew.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Saratoga brewing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.rareformbrewing.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rare Form brewing company&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.alementary.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alementary&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.forgottenboardwalk.com/1916-shore-shiver&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;1916 shore shiver - Forgotten Boardwalk brewing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.abandonbrewing.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Abandon Brewing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://learningdita.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Learning DITA&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://medium.com/@billswallow&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Bill on Medium.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.scriptorium.com/blog/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scriptorium blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/billswallow&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Bill on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://contentmarketingworld.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Marketing World&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 30 Sep 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/local-needs-content-featuring-bill-swallow-content-content-podcast-episode-12/</guid>
    </item>
    <item>
      <title>Off the wall presentations with Ben Woelk</title>
      <link>https://edmar.sh/podcasts/off-wall-presentations-featuring-ben-woelk-content-content-podcast-episode-11/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/off-wall-presentations-featuring-ben-woelk-content-content-podcast-episode-11/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/benwoelk&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ben Woelk on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stcpmc.org/conferences/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Philadelphia Metro Conduit conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stc-rochester.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Rochester&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://slack.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Slack&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cac-stc.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Community Affairs Committee CAC&lt;/a&gt; &lt;a href=&quot;http://www.educause.edu/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Educause&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://careersherpa.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Hannah Morgan, the Career Sherpa&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.QuietRev.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Quiet&lt;/em&gt; - Susan Cain&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.QuietRev.com/ted-talk&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Susan Cain’s TED talk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.mcsweeneys.net/articles/mathematical-word-problems-for-introverts&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Mathematical word problems for introverts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.stc.org/certification/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Certified Professional Technical Communicator program&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://gladwell.com/blink/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Blink&lt;/em&gt; - Malcolm Gladwell&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.amazon.com/Jesus-CEO-Ancient-Visionary-Leadership/dp/0786881267&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Jesus, CEO&lt;/em&gt; - Laurie Beth Jones&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.techsoup.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;TechSoup&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/benwoelk&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ben Woelk on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 01 Sep 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/off-wall-presentations-featuring-ben-woelk-content-content-podcast-episode-11/</guid>
    </item>
    <item>
      <title>Single source of the truth with Bernard Aschwanden</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-10-featuring-bernard-aschwanden/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-10-featuring-bernard-aschwanden/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/aschwanden4stc&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;@aschwanden4stc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/publishsmarter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;@publishsmarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://publishingsmarter.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Publishingsmarter.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://webworks.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Webworks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.adobe.com/cfusion/partnerportal/index.cfm&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Adobe certified partner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Adobe_FrameMaker&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Frame technologies FrameMaker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://google.com/analytics&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Google analytics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/ditaguy&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Michael Priestley&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://alementary.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alementary Brewing, Hackensack, NJ&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tunein.com/radio/Content-Content-p831808/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Content on TuneIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://play.google.com/music/m/I7jhuyjxmj6smhch3i2i36hwgpe?t=Content_Content&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Content on Google Play Music&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://itunes.apple.com/us/podcast/content-content/id978186792?mt=2&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Content on iTunes&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 26 Jul 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-10-featuring-bernard-aschwanden/</guid>
    </item>
    <item>
      <title>Complimentary sandwich with Todd DeLuca</title>
      <link>https://edmar.sh/podcasts/complimentary-sandwich-featuring-todd-deluca-content-content-episode-9/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-super-sized-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/complimentary-sandwich-featuring-todd-deluca-content-content-episode-9/#mentioned-during-this-super-sized-episode&quot;&gt;Mentioned during this super-sized episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://summit.stc.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC Summit&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://intercom.stc.org/2015/11/technical-delivery-an-expanded-role-for-technical-communicators/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Technical Delivery: An Expanded Role for Technical Communicators&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slideshare.net/TechCommTodd/volunteering-your-way-up-the-career-ladder&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Volunteering your way up the career ladder&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/techcommtodd&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Todd on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://techcommtodd.tumblr.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Todd’s Tumblr&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.linkedin.com/in/techcommtodd&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Todd on LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.com/Servant-Leadership-Legitimate-Greatness-Anniversary/dp/0809105543&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Servant Leadership&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 13 May 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/complimentary-sandwich-featuring-todd-deluca-content-content-episode-9/</guid>
    </item>
    <item>
      <title>Fairly random events with Sarah O&#39;Keefe</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-8-fairly-random-events-featuring-sarah-okeefe/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-8-fairly-random-events-featuring-sarah-okeefe/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://scriptorium.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scriptorium&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/sarahokeefe&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sarah’s Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://contentstrategy101.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Strategy 101&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lavacon.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lavacon conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Research_Triangle?wprov=sfla1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;North Carolina Research Triangle&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://netpromoter.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Net promoter score&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://learningdita.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Learning DITA&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-7-curious-about-content-featuring-david-dylan-thomas/&quot;&gt;Content Content podcast episode 7 Curious about content featuring David Dylan Thomas&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.scriptorium.com/2015/11/sturm-und-dita-drang-at-tekom/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sturm und DITA-Drang at tekom&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://ravelry.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ravelry knitting community&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://head-fi.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Head Fi headphone community&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stcpmc.org/conduit-2016&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed is presenting at STC Philly Metro’s Conduit conference Saturday, April 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 11 Mar 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-8-fairly-random-events-featuring-sarah-okeefe/</guid>
    </item>
    <item>
      <title>Curious about content with David Dylan Thomas</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-7-curious-about-content-featuring-david-dylan-thomas/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-7-curious-about-content-featuring-david-dylan-thomas/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://developingphilly.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dave’s &lt;em&gt;Developing Philly&lt;/em&gt; documentary webseries&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://medium.com/@movie_pundit/7-lessons-from-the-future-of-content-part-one-tools-are-cheap-time-is-expensive-f65224adaa06#.pczwj5w0u7&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lessons from the Future of Content: Part One — Tools Are Cheap, Time Is Expensive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://contentcampphilly.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Camp Philly&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=qGA9S1ALRkg&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;VIDEO: Agile Living: How I Learned to Stop Worrying and Never Be “Done”&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://significantobjects.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Significant Objects&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://confabevents.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Confab content strategy conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.meetup.com/Philly-Content-Strategy/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Philly content strategy meetups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://stackexchange.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Stack Exchange&lt;/a&gt; &lt;a href=&quot;https://contently.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Contently API&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://confabevents.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Confab content strategy conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.clevegibbon.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Cleve Gibbon, content strategist&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://epam.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Epam&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lavacon.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lavacon conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/keefknight&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Keith Knight - comic artist - Patreon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/5by5&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dan Benjamin - podcaster - Patreon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.scriptorium.com/2015/02/talent-deficit-in-content-strategy/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sarah O’Keefe - The talent deficit in content strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Fear_of_missing_out&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;FOMO - Fear of missing out&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://abookapart.com/products/the-elements-of-content-strategy&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Elements of Content Strategy - Erin Kissane&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://rosenfeldmedia.com/books/content-everywhere&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Everywhere - Sara Wachter-Boettcher&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://thecontentstrategybook.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Strategy - Rahel Ann Bailie and Noz Urbina&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 19 Jan 2016 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-7-curious-about-content-featuring-david-dylan-thomas/</guid>
    </item>
    <item>
      <title>Where&#39;s my Flare with Dr. Carlos Evia</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-6-wheres-my-flare-featuring-dr-carlos-evia/</link>
      <description>&lt;p&gt;Carlos is the Director of Professional and Technical Writing at Virginia Tech, is on the Lightweight DITA Technical Committee, and is an advocate for using multimedia with DITA.&lt;/p&gt;
&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-6-wheres-my-flare-featuring-dr-carlos-evia/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://carlosevia.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Carlos Evia&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/carlosevia&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Carlos Evia on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.scriptorium.com/2015/02/taking-dita-troubleshooting-topic-spin/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Taking the DITA troubleshooting topic for a spin&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://techcommgeekmom.com/2015/07/20/oh-the-academian-and-the-practitioner-should-be-friends-engaging-techcomm-professionals/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;The academician and the practitioner should be friends&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/2015/08/10/lisa-meloncon-academic-practitioner-divide-podcast/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom Johnson podcast with Lisa Meloncon&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.amazon.com/Outsourcing-Technical-Communication-Practices-Communications/dp/0895033348&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Outsourcing Technical Communication&lt;/a&gt;, edited by Carlos&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.amazon.com/Developing-Quality-Technical-Information-Handbook/dp/0131477498&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Developing Quality Technical Information&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://informationdevelopmentworld.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Information Development World&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://t.co/FLkoPMsnZz&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Unsung heroes of DITA presentation by Gretyl Kinsey&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.madcapsoftware.com/products/flare/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Madcap Flare&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://oxygenxml.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;oXygen XML Editor&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.oxygenxml.com/events/2015/webinar_perceive_everything_as_dita.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA Glass&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/donrday/expeDITA&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;ExpeDITA&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://dita.xml.org/blog/lightweight-dita&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lightweight DITA&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.hci.vt.edu/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Virginia Tech Center for Human-Computer Interaction&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 27 Oct 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-6-wheres-my-flare-featuring-dr-carlos-evia/</guid>
    </item>
    <item>
      <title>Undefinable Me with Marcia Riefer Johnston</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-5-undefinable-me-featuring-marcia-riefer-johnston/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-5-undefinable-me-featuring-marcia-riefer-johnston/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mtv.com/news/2226440/teen-programmer-speech/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Undefinable Me: The Story of a 13-Year-Old Girl from the Inner City Who Codes&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Keila Banks’ inspiring 10-minute &lt;a href=&quot;http://www.oscon.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OSCON&lt;/a&gt; keynote&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://malaphors.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Malaphors&lt;/a&gt; (“Unintentional blended idioms and phrases—It’s the cream of the cake!” by David Hatfield, the Malaphor King)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://contentmarketinginstitute.com/what-is-intelligent-content&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;What Is Intelligent Content?&lt;/a&gt; (includes links to my six-pack of articles delving into each element of Ann Rockley’s classic definition)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://writing.rocks/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Writing.Rocks&lt;/a&gt; (Marcia’s blog, where you can play the weekly concise-writing game &lt;em&gt;Tighten This!&lt;/em&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.amazon.com/gp/product/B00CYSB2IK&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Word Up!&lt;/em&gt;&lt;/a&gt; on Amazon*&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.amazon.com/You-Can-Say-That-Again-ebook/dp/B00VSBRB0M&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;You Can Say That Again&lt;/a&gt; on Amazon&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://edmar.sh/podcasts/introducing-the-content-content-podcast/&quot;&gt;Content Content podcast episode 1 with Sharon Burton&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://thecontentwrangler.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Scott Abel&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/The_Velveteen_Rabbit&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;The Velveteen Rabbit&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Ann_Rockley&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ann Rockley&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.amazon.com/Managing-Enterprise-Content-Unified-Strategy/dp/032181536X&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;&lt;em&gt;Managing Enterprise Content: A Unified Strategy&lt;/em&gt;&lt;/a&gt; by Ann Rockley and Charles Cooper&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://techwhirl.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Techwhirl.com - Connie Giordano and Al Martine&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.informationdevelopmentworld.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Information Development World&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://lavacon.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lavacon conference&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://stcpmc.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC - Philly Metro chapter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://contentmarketinginstitute.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Content Marketing Institute&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.joepulizzi.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Joe Pulizzi&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://robertrose.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Robert Rose&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://edmar.sh/podcasts/content-content-podcast-fire-fingers-featuring-danielle-villegas-episode-3/&quot;&gt;Content Content podcast episode 3 with Danielle Villegas&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.daircomm.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Dair Communications&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://techcommgeekmom.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Techcommgeekmom&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 19 Aug 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-5-undefinable-me-featuring-marcia-riefer-johnston/</guid>
    </item>
    <item>
      <title>Curse of knowledge with Tom Johnson</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-episode-4-curse-of-knowledge-with-tom-johnson/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-episode-4-curse-of-knowledge-with-tom-johnson/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom’s web site - I’d rather be writing&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/tomjohnson&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/2015/03/23/new-series-jekyll-versus-dita/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom’s review of our podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/2015/05/31/realizations-from-career-fair-what-i-lost/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Why no one stopped by my technical writing booth at career fair day&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/2010/12/22/why-im-so-visible/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom on finding time to write&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://jekyllrb.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Jekyll static site generator&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://liquidmarkup.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Liquid templating language&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.atlassian.com/software/confluence&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Confluence wiki&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.adobe.com/products/robohelp.html&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Adobe RoboHelp&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://liquidmarkup.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Madcap Flare&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://oxygenxml.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;oXygen XML Editor&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://protopage.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Protopage RSS feed aggregator&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.inoreader.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Inoreader RSS feed aggregator&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://feedly.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Feedly RSS feed aggregator&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.salesforce.com/service-cloud/features/knowledge-base/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Salesforce Knowledge&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://groups.drupal.org/dita-tech-comm-cms&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA module for Drupal CMS (in development)&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://karenmcgrane.com/2014/10/15/content-in-a-zombie-apocalypse/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Karen McGrane on “blobs”&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://daringfireball.net/projects/markown/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Markdown formatting syntax language&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://docpad.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DocPad text editor&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.jetbrains.com/webstorm/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;WebStorm text editor&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.github.com/webstorm/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;GitHub&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.blubrry.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Blubrry podcasting plugin for WordPress&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://contentcontent.info&quot; title=&quot;content content dot info&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;contentcontent.info&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed Marsh on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 08 Jul 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-episode-4-curse-of-knowledge-with-tom-johnson/</guid>
    </item>
    <item>
      <title>Fire fingers with Danielle Villegas</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-fire-fingers-featuring-danielle-villegas-episode-3/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-fire-fingers-featuring-danielle-villegas-episode-3/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/techcommgeekmom&quot; title=&quot;techcommgeekmom on Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;techcommgeekmom on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.scoop.it/u/techcommgeekmom&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Danielle on Scoop.It&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://paper.li/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;paper.li&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://njit.edu/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;New Jersey Institute of Technology&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://msptc.njit.edu/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;NJIT - Professional and Technical Communications program&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.stcpmc.org/conference/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;2015 Mid-Atlantic Technical Communication Conference - March 28, 2015 - sponsored by the STC Philly Metro Chapter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.stcpmc.org/2015/04/philadelphias-coup-meet-the-vp-candidates-stc-election-2015/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;CONDUIT debate featuring STC Vice Presidential candidates&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.stcpmc.org/2015/03/stc-pmc-podcast-a-conversation-with-adriane-hunt/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;STC PMC Podcast with Adriane Hunt&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://lavacon.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Lavacon conference&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.intelligentcontentconference.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Intelligent Content conference&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/hashtag/techcomm&quot; title=&quot;Techcomm on Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;#techcomm on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/hashtag/contentstrategy&quot; title=&quot;Content Strategy on Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;#contentstrategy on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=SklXZ1yRFoQ&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Chef Josette&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://wordpress.org/plugins/jetpack/&quot; title=&quot;WordPress Jetpack plugin&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;WordPress Jetpack&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://moodle.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Moodle LMS&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.business.rutgers.edu/executive-education/programs/online-mini-mba-digital-marketing&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Rutgers Online Digital Marketing “Mini-MBA”&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://analytics.google.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Google Analytics&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.google.com/trends/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Google Trends&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/playlist?list=PL6wGbZVVzENl4a7UbF52s36bxQZC-SzM-&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Adobe Audition for podcasters YouTube playlist&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://contentcontent.info&quot; title=&quot;content content dot info&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;contentcontent.info&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed Marsh on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Tue, 28 Apr 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-fire-fingers-featuring-danielle-villegas-episode-3/</guid>
    </item>
    <item>
      <title>Time as a Tool with Alan Houser</title>
      <link>https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://edmar.sh/podcasts/introducing-the-content-content-podcast/&quot; title=&quot;Introducing the Content Content podcast — Offices without tarantulas with Sharon Burton&quot;&gt;Content Content 1 featuring Sharon Burton&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/arh&quot; title=&quot;Alan Houser Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alan Houser on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.groupwellesley.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Alan’s business, Group Wellesley&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.stc.org&quot; title=&quot;Society for Technical Communication&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Society for Technical Communication (STC)&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.stcpmc.org/conference/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;2015 Mid-Atlantic Technical Communication Conference - March 28, 2015 - sponsored by the STC Philly Metro Chapter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.w3c.org&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;World Wide Web Consortium (W3C)&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://www.oasis-open.org/&quot; title=&quot;OASIS&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;OASIS&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.sarawb.com/&quot; title=&quot;Sara Wachter-Boettcher&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sara Wachter-Boettcher&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://rosenfeldmedia.com/books/content-everywhere&quot; title=&quot;Content Everywhere book&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Sara’s book &lt;em&gt;Content Everywhere&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://contentcontent.info&quot; title=&quot;content content dot info&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;contentcontent.info&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://dita.xml.org/&quot; title=&quot;Darwin Information Typing Architecture&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Darwin Information Typing Architecture (DITA)&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://wiki.oasis-open.org/dita/DITA%201.3&quot; title=&quot;DITA 1.3 specification&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;DITA 1.3 spec&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://daringfireball.net/projects/markdown/&quot; title=&quot;Markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Markdown language&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Tom Johnson - I’d rather be writing&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://idratherbewriting.com/2015/02/13/xml-and-the-web-drifting-farther-apart/&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;XML and the web: drifting farther apart?&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://5by5.tv&quot; title=&quot;5 by 5&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;5 by 5 podcast network&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://5by5.tv/b2w&quot; title=&quot;Back to Work&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Back to Work podcast on 5 by 5&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twit.tv&quot; title=&quot;TWiT Network&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;TWiT podcast network&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twit.tv/show/this-week-in-tech/&quot; title=&quot;TWiT podcast&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;This Week in Tech podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twit.tv/show/triangulation&quot; title=&quot;Triangulation podcast&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Triangulation podcast&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Ed Marsh on Twitter&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Wed, 18 Mar 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/content-content-podcast-time-as-a-tool-featuring-alan-houser-episode-2/</guid>
    </item>
    <item>
      <title>Offices without tarantulas with Sharon Burton</title>
      <link>https://edmar.sh/podcasts/introducing-the-content-content-podcast/</link>
      <description>&lt;h2 id=&quot;mentioned-during-this-episode&quot; tabindex=&quot;-1&quot;&gt;&lt;a class=&quot;header-anchor&quot; href=&quot;https://edmar.sh/podcasts/introducing-the-content-content-podcast/#mentioned-during-this-episode&quot;&gt;Mentioned during this episode&lt;/a&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://sharonburton.com&quot; title=&quot;Sharon Burton&#39;s web site&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;SharonBurton.com&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/sharonburton&quot; title=&quot;Sharon Burton&#39;s Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;twitter.com/sharonburton&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.brainyquote.com/quotes/quotes/d/dollyparto446782.html&quot; title=&quot;Dolly Parton quote on brainyquote.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;“It costs a lot of money to look this cheap.” - Dolly Parton&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://ucr.edu&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;University of California Riverside&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://techcommspeakersbureau.org/Speaker?itemId=101&quot; title=&quot;Sharon Burton on TechCommSpeakersBureau&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;TechComm Speakers Bureau&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://contentcontent.info&quot; title=&quot;content content dot info&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;contentcontent.info&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://edmarsh.com/&quot; title=&quot;Ed Marsh dot com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;edmarsh.com&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://twitter.com/edmarsh&quot; title=&quot;Ed Marsh on Twitter&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;twitter.com/edmarsh&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Fri, 06 Feb 2015 00:00:00 GMT</pubDate>
      <dc:creator>Ed Marsh</dc:creator>
      <guid>https://edmar.sh/podcasts/introducing-the-content-content-podcast/</guid>
    </item>
  </channel>
</rss>