Skip to content

Commit 79b9ae0

Browse files
committed
Add media page
1 parent c02d8e3 commit 79b9ae0

File tree

6 files changed

+36
-3
lines changed

6 files changed

+36
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ Then you've probably run into at least one of the following problems:
146146
## What does a chezmoi dotfile repo look like?
147147

148148
Have a look at [repos tagged with `chezmoi` on
149-
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated).
149+
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated). You can also read
150+
what [has been written about chezmoi](docs/MEDIA.md).
150151

151152
## How do I start with chezmoi?
152153

chezmoi.io/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ content-docs: \
99
content/docs/faq.md \
1010
content/docs/how-to.md \
1111
content/docs/install.md \
12+
content/docs/media.md \
1213
content/docs/quick-start.md \
1314
content/docs/reference.md
1415

@@ -27,6 +28,9 @@ content/docs/how-to.md: ../docs/HOWTO.md ../internal/generate-chezmoi.io-content
2728
content/docs/install.md: ../docs/INSTALL.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
2829
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Install" -longtitle="Install Guide" < $< > $@ || ( rm -f $@ ; false )
2930

31+
content/docs/media.md: ../docs/MEDIA.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
32+
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Media" -longtitle="Media" < $< > $@ || ( rm -f $@ ; false )
33+
3034
content/docs/quick-start.md: ../docs/QUICKSTART.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
3135
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Quick Start" -longtitle="Quick Start Guide" < $< > $@ || ( rm -f $@ ; false )
3236

chezmoi.io/content/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ Then you've probably run into at least one of the following problems:
129129
## What does a chezmoi dotfile repo look like?
130130

131131
Have a look at [repos tagged with `chezmoi` on
132-
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated).
132+
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated). You can also read
133+
what [has been written about chezmoi](/docs/media/).
133134

134135
## How do I start with chezmoi?
135136

cmd/docs.gen.go

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/MEDIA.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# chezmoi in the media
2+
3+
| Language | Date | Version | Format | Link |
4+
| -------- | ---------- | ------- | ------------ | ------------------------------------------------------------------------------------------------------------------------- |
5+
| FR | 2020-04-16 | 1.17.19 | Text | [Chezmoi, visite guidée](https://blog.wescale.fr/2020/04/16/chezmoi-visite-guidee/) |
6+
| EN | 2020-04-03 | 1.7.17 | Text | [Fedora Magazine: Take back your dotfiles with Chezmoi](https://fedoramagazine.org/take-back-your-dotfiles-with-chezmoi/) |
7+
| EN | 2019-11-20 | 1.7.2 | Audio/video | [FLOSS weekly episode 556: chezmoi](https://twit.tv/shows/floss-weekly/episodes/556) |
8+
| EN | 2019-01-10 | 0.0.11 | Text | [Linux Fu: The kitchen sync](https://hackaday.com/2019/01/10/linux-fu-the-kitchen-sync/) |
9+
10+
To add your article to this page please either [open an
11+
issue](https://github.com/twpayne/chezmoi/issues/new/choose) or submit a pull
12+
request that modifies this file
13+
([`docs/MEDIA.md`](https://github.com/twpayne/chezmoi/blob/master/docs/MEDIA.md)).

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:generate go run ./internal/generate-assets -o cmd/docs.gen.go -tags=!noembeddocs docs/CHANGES.md docs/CONTRIBUTING.md docs/FAQ.md docs/HOWTO.md docs/INSTALL.md docs/QUICKSTART.md docs/REFERENCE.md
1+
//go:generate go run ./internal/generate-assets -o cmd/docs.gen.go -tags=!noembeddocs docs/CHANGES.md docs/CONTRIBUTING.md docs/FAQ.md docs/HOWTO.md docs/INSTALL.md docs/MEDIA.md docs/QUICKSTART.md docs/REFERENCE.md
22
//go:generate go run ./internal/generate-assets -o cmd/templates.gen.go assets/templates/COMMIT_MESSAGE.tmpl
33
//go:generate go run ./internal/generate-helps -o cmd/helps.gen.go -i docs/REFERENCE.md
44

0 commit comments

Comments
 (0)