<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Best way to add empty kerning to a UFO (to make compatible with kerned font)?]]></title><description><![CDATA[<p dir="auto">I'm adding blank kerning to a monospace font, in order to make it compatible with a proportional font. Ultimately, I'm building a variable font with a "Monospace" axis, via FontMake, and it fails if some sources have kerning, but others don't.</p>
<p dir="auto">Is there a better way to add blank kerning than this?</p>
<pre><code>if len(f.kerning) == 0:
    f.kerning[("A", "A")] = 0
</code></pre>
]]></description><link>https://forum.robofont.com/topic/721/best-way-to-add-empty-kerning-to-a-ufo-to-make-compatible-with-kerned-font</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Jul 2026 08:33:19 GMT</lastBuildDate><atom:link href="https://forum.robofont.com/topic/721.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 31 Oct 2019 14:28:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Best way to add empty kerning to a UFO (to make compatible with kerned font)? on Thu, 31 Oct 2019 14:28:59 GMT]]></title><description><![CDATA[<p dir="auto">I'm adding blank kerning to a monospace font, in order to make it compatible with a proportional font. Ultimately, I'm building a variable font with a "Monospace" axis, via FontMake, and it fails if some sources have kerning, but others don't.</p>
<p dir="auto">Is there a better way to add blank kerning than this?</p>
<pre><code>if len(f.kerning) == 0:
    f.kerning[("A", "A")] = 0
</code></pre>
]]></description><link>https://forum.robofont.com/post/2717</link><guid isPermaLink="true">https://forum.robofont.com/post/2717</guid><dc:creator><![CDATA[ArrowType]]></dc:creator><pubDate>Thu, 31 Oct 2019 14:28:59 GMT</pubDate></item><item><title><![CDATA[Reply to Best way to add empty kerning to a UFO (to make compatible with kerned font)? on Fri, 01 Nov 2019 09:25:51 GMT]]></title><description><![CDATA[<p dir="auto">fontMake requires all masters have the same kerning pairs.</p>
<p dir="auto">Batch is solving this for you by adding interpolated values for non existing pairs</p>
<p dir="auto"><code>f.kerning[("A", "A")] = 0</code> is the only way</p>
<p dir="auto">good luck</p>
]]></description><link>https://forum.robofont.com/post/2720</link><guid isPermaLink="true">https://forum.robofont.com/post/2720</guid><dc:creator><![CDATA[frederik]]></dc:creator><pubDate>Fri, 01 Nov 2019 09:25:51 GMT</pubDate></item></channel></rss>