-
-
Notifications
You must be signed in to change notification settings - Fork 533
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 #1173 from EricFromCanada/master
list cask fonts on separate page
- Loading branch information
Showing
3 changed files
with
32 additions
and
6 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,23 @@ | ||
--- | ||
title: homebrew-cask | ||
layout: default | ||
permalink: /cask-font/ | ||
--- | ||
<p>This is a listing of all fonts available from the <a href="{{ site.taps.cask.remote }}">{{ site.taps.cask.repo }} tap</a> via the <a href="https://brew.sh">Homebrew</a> package manager for macOS.</p> | ||
|
||
<h2><a href="{{ site.baseurl }}/api/cask.json"><code>/api/cask.json</code> (JSON API)</a></h2> | ||
|
||
<table> | ||
{%- assign sorted_casks = site.data.cask | sort -%} | ||
{%- for cask in sorted_casks -%} | ||
{%- assign subfolder = cask[1].ruby_source_path | slice: 6, 4 -%} | ||
{%- if subfolder == "font" -%} | ||
<tr> | ||
{%- assign data_token = cask[0] -%} | ||
{%- assign token = cask[1].token -%} | ||
{%- include cask.html data_token=data_token token=token -%} | ||
</tr> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</table> | ||
<footer id="border-no-bottom">Last updated: {{ "today" | date: "%F %R" }}</footer> |
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