-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Each project now gets assigned a weight used in the ordering on the front page listing. Additionally, rendered summaries can be provided to be used in the box. Three links and badges are recognized and automatically embedded into the project page: crates.io, documentation, and the repository url.
- Loading branch information
1 parent
226181d
commit 35260e0
Showing
6 changed files
with
43 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
theme: jekyll-theme-slate | ||
collections: | ||
summaries: | ||
projects: | ||
output: true |
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,6 +1,12 @@ | ||
--- | ||
layout: project | ||
name: "image" | ||
weight: 1000 | ||
crates_io: "https://crates.io/crates/image" | ||
crates_io_badge: "https://img.shields.io/crates/v/image.svg" | ||
github: "https://github.com/image-rs/image" | ||
docs: "https://docs.rs/image" | ||
docs_badge: "https://docs.rs/image/badge.svg" | ||
--- | ||
|
||
The `image` project. |
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,6 @@ | ||
--- | ||
name: "image" | ||
--- | ||
|
||
Aggregates major image formats into a coherent interface for reading, writing | ||
and editing. |
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