François Pirsch

Results 24 comments of François Pirsch

:+1: for plugins. Could solve other issues like #22 .

Inlining the css would be fine, but the fonts ? Basically you need 4 font files (woff, ttf, eot, svg) and each user agent should only download the one that...

I had a look at that. We certainly don't need all 5000+ glyphs it contains, a lot can be stripped down. But Symbola has nice letters for \mathscr, mathcal and...

Aren't ES6 classes the new "bad part" of JS ?

Isn't it precisely the point: keywords like `class` and `implements` make things look like java or C++ classes, and everybody wants to use them because it feels like good old...

Hi @axkibe, unfortunately the list of ligatures can change quite a lot, depending on the script, language or features selected. Maybe this list could be memoized, but checking the options...

Hi, 0 is the standard code for the `.notdef`glyph, to be displayed as a fallback. > Regardless of the encoding scheme, character codes that do not correspond to any glyph...

suggestion: ```javascript // font.js Font.prototype.hasChar = function(c) { return this.encoding.charToGlyphIndex(c) > 0; // checks, 0, null, undefined, false... }; ```

@Jolg42 last release was several months ago, a whole lot of bugs have been fixed since. It would be nice to have a new release :-)

Actually `bin/test-render` has its own text rendering function which doesn't handle any font feature. It uses opentype.js only to get individual glyph SVG paths. This is why most tests fail.