File tree Expand file tree Collapse file tree 4 files changed +49
-9
lines changed Expand file tree Collapse file tree 4 files changed +49
-9
lines changed Original file line number Diff line number Diff line change @@ -742,6 +742,13 @@ <h2>Activate Commit Mono in your editor.</h2>
742742 </ form >
743743 < br />
744744 < div class ="docs_container " id ="faq_container_docs ">
745+ < details >
746+ < summary tabindex ="0 "> My .zip file won’t work, what to do?</ summary >
747+ < p >
748+ There have been some problems with downloading .zip files from Safari.
749+ The download is tested to work in Chrome and FireFox.
750+ </ p >
751+ </ details >
745752 < details >
746753 < summary tabindex ="0 ">
747754 How can I be sure that I’m looking at Commit Mono?
@@ -835,13 +842,6 @@ <h2>Activate Commit Mono in your editor.</h2>
835842 Mono.
836843 </ p >
837844 </ details >
838- < details >
839- < summary tabindex ="0 "> My .zip file won’t work, what to do?</ summary >
840- < p >
841- There have been some problems with downloading .zip files from Safari.
842- The download is tested to work in Chrome and FireFox.
843- </ p >
844- </ details >
845845 </ div >
846846 < div class ="docs_container " id ="features_container_docs ">
847847 < p >
Original file line number Diff line number Diff line change 1+ feature kern {
2+ # GPOS feature: Kerning
3+ # Lookups: 1
4+
5+ # Smart kerning with pos
6+
7+
8+ # classes
9+ @narrow_letter = [I L f i j l r t ];
10+ @normal_letter = [F J P T Y a b c d e g h k n o p q s u v x y z space comma hyphen period colon semicolon underscore ];
11+ @larger_letter = [A B C D E G H K O Q R S U V X Z ];
12+ @widest_letter = [M N W m w ];
13+ @origin = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z ];
14+
15+
16+ # feature
17+ lookup kern {
18+
19+ pos @narrow_letter @origin' @widest_letter <-44 0 0 0 >;
20+ pos @narrow_letter @origin' @larger_letter <-30 0 0 0 >;
21+ pos @normal_letter @origin' @widest_letter <-30 0 0 0 >;
22+ pos @narrow_letter @origin' @normal_letter <-18 0 0 0 >;
23+ pos @normal_letter @origin' @larger_letter <-18 0 0 0 >;
24+ pos @larger_letter @origin' @widest_letter <-18 0 0 0 >;
25+
26+ pos @widest_letter @origin' @narrow_letter <44 0 0 0 >;
27+ pos @larger_letter @origin' @narrow_letter <30 0 0 0 >;
28+ pos @normal_letter @origin' @narrow_letter <30 0 0 0 >;
29+ pos @widest_letter @origin' @normal_letter <18 0 0 0 >;
30+ pos @larger_letter @origin' @normal_letter <18 0 0 0 >;
31+ pos @widest_letter @origin' @larger_letter <18 0 0 0 >;
32+
33+ } kern ;
34+
35+ } kern ;
Original file line number Diff line number Diff line change @@ -8,11 +8,13 @@ feature ss05 {
88 sub @normal_letter @origin' @widest_letter by @leftM ;
99 sub @narrow_letter @origin' @normal_letter by @leftS ;
1010 sub @normal_letter @origin' @larger_letter by @leftS ;
11+ sub @larger_letter @origin' @widest_letter by @leftS ;
1112
1213 sub @widest_letter @origin' @narrow_letter by @rightL ;
1314 sub @larger_letter @origin' @narrow_letter by @rightM ;
1415 sub @normal_letter @origin' @narrow_letter by @rightS ;
1516 sub @widest_letter @origin' @normal_letter by @rightM ;
1617 sub @larger_letter @origin' @normal_letter by @rightS ;
18+ sub @widest_letter @origin' @larger_letter by @rightS ;
1719
1820} ss05 ;
You can’t perform that action at this time.
0 commit comments