Skip to content

Commit

Permalink
Added Typenetwork‘s profile
Browse files Browse the repository at this point in the history
  • Loading branch information
guidoferreyra committed Sep 12, 2023
1 parent 72dfa1c commit 0187d93
Show file tree
Hide file tree
Showing 5 changed files with 2,200 additions and 0 deletions.
1 change: 1 addition & 0 deletions Lib/fontbakery/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"notofonts",
"opentype",
"shaping",
"typenetwork",
"ufo_sources",
"universal",
"proposals",
Expand Down
10 changes: 10 additions & 0 deletions Lib/fontbakery/commands/check_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from fontbakery.reporters.badge import BadgeReporter
from fontbakery.reporters.ghmarkdown import GHMarkdownReporter
from fontbakery.reporters.html import HTMLReporter
from fontbakery.reporters.tnhtml import TNReporter
from fontbakery.utils import get_theme


Expand Down Expand Up @@ -235,6 +236,15 @@ def log_levels_get(key):
help="Write a HTML report to HTML_FILE.",
)

argument_parser.add_argument(
"--tn",
default=False,
action=AddReporterAction,
cls=TNReporter,
metavar="HTML_FILE",
help="Write a HTML report to HTML_FILE.",
)

iterargs = sorted(profile.iterargs.keys())

gather_by_choices = iterargs + ["*check"]
Expand Down
Loading

0 comments on commit 0187d93

Please sign in to comment.