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>
742
742
</ form >
743
743
< br />
744
744
< 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 >
745
752
< details >
746
753
< summary tabindex ="0 ">
747
754
How can I be sure that I’m looking at Commit Mono?
@@ -835,13 +842,6 @@ <h2>Activate Commit Mono in your editor.</h2>
835
842
Mono.
836
843
</ p >
837
844
</ 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 >
845
845
</ div >
846
846
< div class ="docs_container " id ="features_container_docs ">
847
847
< 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 {
8
8
sub @normal_letter @origin' @widest_letter by @leftM ;
9
9
sub @narrow_letter @origin' @normal_letter by @leftS ;
10
10
sub @normal_letter @origin' @larger_letter by @leftS ;
11
+ sub @larger_letter @origin' @widest_letter by @leftS ;
11
12
12
13
sub @widest_letter @origin' @narrow_letter by @rightL ;
13
14
sub @larger_letter @origin' @narrow_letter by @rightM ;
14
15
sub @normal_letter @origin' @narrow_letter by @rightS ;
15
16
sub @widest_letter @origin' @normal_letter by @rightM ;
16
17
sub @larger_letter @origin' @normal_letter by @rightS ;
18
+ sub @widest_letter @origin' @larger_letter by @rightS ;
17
19
18
20
} ss05 ;
You can’t perform that action at this time.
0 commit comments