92 lines
6.5 KiB
XML
92 lines
6.5 KiB
XML
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Coding on Infusion</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/</link>
|
|
<description>Recent content in Coding on Infusion</description>
|
|
<generator>Hugo -- gohugo.io</generator>
|
|
<language>en-us</language>
|
|
|
|
<atom:link href="https://heydon.github.io/infusion/patterns/coding/index.xml" rel="self" type="application/rss+xml" />
|
|
|
|
|
|
<item>
|
|
<title>Code blocks</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/code-blocks/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/code-blocks/</guid>
|
|
<description>Markdown already supports code samples both inline (using single backticks like `some code here`) and in blocks. Infusion will syntax highlight HTML, CSS, and JavaScript if you provide the correct language in the formulation of the block.
|
|
So, this&hellip;
|
|
```html &lt;button aria-pressed="false"toggle me&lt;/button ``` &hellip; will result in this:
|
|
&lt;button aria-pressed=&quot;false&quot;&gt;toggle me&lt;/button&gt; Note that the syntax highlighting uses a greyscale theme. Infusion is careful not to use color as part of its own design, because these colors may clash with those of the design being illustrated and discussed.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>CodePen embedding</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/codepen-embedding/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/codepen-embedding/</guid>
|
|
<description>Sometimes just pictures of the pattern you&rsquo;re documenting aren&rsquo;t enough. Interactive patterns benefit from live demos, so that readers can test their functionality.
|
|
Infusion offers a couple of ways to do this. The first is by embedding CodePen demos into the content. The codePen shortcode takes just one argument: the codePen&rsquo;s ID.
|
|
&#x7b;{% codePen VpVNKW %}} This will embed the identified codePen into the content wherever you placed the shortcode, with the result view showing by default:</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Writing inline demos</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/writing-inline-demos/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/writing-inline-demos/</guid>
|
|
<description>There are some issues with CodePen embedding, like them not working offline. They also come with CodePen branding, which will clash with the pattern you&rsquo;re trying to illustrate.
|
|
Infusion offers another option: a special demo shortcode that allows you to write HTML, CSS, and JavaScript directly into the markdown file. The outputted demo is encapsulated using Shadow DOM, so you don&rsquo;t have to worry about broken styles and global JS.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Color palettes</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/color-palettes/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/color-palettes/</guid>
|
|
<description>There&rsquo;s no reason why your Infusion-powered pattern library has to be all about functionality. You can include style guide-like information such as color palettes too. The colors shortcode makes it easy to exhibit colors and their values together. Just supply a comma-separated list of CSS color values.
|
|
&#x7b;{% colors "#111111, #cccccc, #ffffff" %}} The result is a one row strip showing each color supplied in order. The colors for Infusion are greyscale:</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Command line</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/command-line/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/command-line/</guid>
|
|
<description>Your pattern documentation may need to include commands for installing packages or using CLIs. Infusion offers the cmd shortcode for making code blocks look like terminal commands.
|
|
Here&rsquo;s how you write it:
|
|
&#x7b;{&lt;cmd}} npm run start &#x7b;{&lt;/cmd}} And here&rsquo;s how it looks:
|
|
npm run start The cmd shortcode currently only supports single commands. If you want to show multiple, successive commands use separate cmd blocks.
|
|
</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>File trees</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/file-trees/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/file-trees/</guid>
|
|
<description>Representing folder/file structures is simple and accessible in Infusion. Which is just as well, because some components may need to conform to a certain folder structure.
|
|
The file tree is described using a markdown nested list structure:
|
|
&#x7b;{% fileTree %}} * Level 1 folder * Level 2 file * Level 2 folder * Level 3 file * Level 3 folder * Level 4 file * Level 3 folder * Level 4 file * Level 4 file * Level 3 file * Level 2 folder * Level 3 file * Level 3 file * Level 3 file * Level 2 file * Level 1 file &#x7b;{% /fileTree %}} This is drawn in the following fashion, but preserves the underlying nested list structure for assistive technologies such as screen readers:</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Tested using...</title>
|
|
<link>https://heydon.github.io/infusion/patterns/coding/tested/</link>
|
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
|
|
<guid>https://heydon.github.io/infusion/patterns/coding/tested/</guid>
|
|
<description>When you&rsquo;re an inclusive designer, it&rsquo;s pertinent to do some testing. Following specs is one thing, but you need to verify that your component works okay for users.
|
|
Infusion provided a tested shortcode that let&rsquo;s you show which browsers and assistive technologies you&rsquo;ve tried your design out in. Here&rsquo;s an example. Note the commas and &ldquo;+&rdquo; signs.
|
|
&#x7b;{% tested using="Firefox Android + NVDA, Chrome, Safari iOS + Voiceover, Edge" %}} This outputs:</description>
|
|
</item>
|
|
|
|
</channel>
|
|
</rss> |