forked from googlefonts/gftools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating Font Bakery scripts into Google Fonts Tools
Font Bakery from now on will be focused on a sigle purpose: a Quality-Assurance automated testing framework for font families. (issue googlefonts#3 and fonttools/fontbakery#1639)
- Loading branch information
1 parent
5878737
commit a000fd2
Showing
60 changed files
with
10,029 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# bash completion for gftools | ||
which gftools && | ||
function _gftools { | ||
local cur prev subcommands | ||
COMPREPLY=() | ||
cur="$(_get_cword)" | ||
prev="$3" | ||
# if prev is empty | ||
if [ $COMP_CWORD == 1 ] ; then | ||
subcommands="$(gftools --list-subcommands)" | ||
COMPREPLY=( $(compgen -W "$subcommands" -- "$cur") ) | ||
fi | ||
} && | ||
complete -o default -F _gftools gftools |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
td.number { | ||
text-align: right; | ||
font-weight: bold; | ||
padding-right: 5px; | ||
white-space: nowrap; | ||
} | ||
|
||
td.number.nan { | ||
font-weight: normal; | ||
color: #AAA; | ||
} | ||
|
||
th.number { | ||
text-align: right; | ||
} | ||
|
||
td.boolean { | ||
text-align: center; | ||
} | ||
|
||
th.boolean { | ||
text-align: center; | ||
} |
Oops, something went wrong.