Skip to content

Commit

Permalink
Migrating Font Bakery scripts into Google Fonts Tools
Browse files Browse the repository at this point in the history
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
felipesanches committed Oct 31, 2017
1 parent 5878737 commit a000fd2
Show file tree
Hide file tree
Showing 60 changed files with 10,029 additions and 0 deletions.
14 changes: 14 additions & 0 deletions bin/bash_completion
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
23 changes: 23 additions & 0 deletions bin/fontmetadata_tool/editablegrid.css
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;
}
Loading

0 comments on commit a000fd2

Please sign in to comment.