-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1011 from googlefonts/new-propagate-anchors
Port fontc' propagate_anchors.rs to .py; apply it as preflight transformation
- Loading branch information
Showing
12 changed files
with
7,531 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
TRANSFORMATIONS = [] | ||
from types import MappingProxyType | ||
from typing import NamedTuple | ||
|
||
from .propagate_anchors import propagate_all_anchors | ||
|
||
TRANSFORMATIONS = [ | ||
propagate_all_anchors, | ||
] | ||
|
||
|
||
class _CustomParameter(NamedTuple): | ||
name: str | ||
default: bool | ||
|
||
|
||
TRANSFORMATION_CUSTOM_PARAMS = MappingProxyType( | ||
{ | ||
propagate_all_anchors: _CustomParameter("Propagate Anchors", True), | ||
} | ||
) |
Oops, something went wrong.