Skip to content

Commit 303a0d4

Browse files
Yang Junharttle
Yang Jun
authored andcommitted
docs: add customerio as contributor
1 parent 28ebe11 commit 303a0d4

File tree

7 files changed

+26
-1278
lines changed

7 files changed

+26
-1278
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ node_modules/
1313
# tmp
1414
docs/public/js/liquid.browser.min.js
1515
docs/themes/navy/layout/partial/all-contributors.swig
16+
docs/themes/navy/layout/partial/financial-contributors.swig
1617
dist/
1718
demo/*/yarn.json
1819

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ Special thanks to the following sponsors!
9191
<td align="center" valign="top" width="14.28%"><a href="https://opencollective.com/khaled-salem"><img src="https://images.opencollective.com/khaled-salem/avatar/256.png?height=256" width="100px;" alt="Khaled Salem"/><br /><sub><b>Khaled Salem</b></sub></a></td>
9292
<td align="center" valign="top" width="14.28%"><a href="https://sentry.io/"><img src="https://avatars.githubusercontent.com/u/1396951?v=4?s=100" width="100px;" alt="Sentry"/><br /><sub><b>Sentry</b></sub></a></td>
9393
<td align="center" valign="top" width="14.28%"><a href="https://www.checkoutblocks.com/"><img src="https://avatars.githubusercontent.com/u/114603307?v=4?s=100" width="100px;" alt="Checkout Blocks"/><br /><sub><b>Checkout Blocks</b></sub></a></td>
94+
<td align="center" valign="top" width="14.28%"><a href="https://customer.io/"><img src="https://avatars.githubusercontent.com/u/1152079?v=4?s=100" width="100px;" alt="Customer IO"/><br /><sub><b>Customer IO</b></sub></a></td>
9495
</tr>
9596
</tbody>
9697
</table>

Diff for: bin/build-changelog.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,5 @@ sed -i \
1111
source/tutorials/changelog.md
1212
cp source/tutorials/changelog.md source/zh-cn/tutorials/changelog.md
1313

14-
sed -i -e '1i\
15-
---\ntitle: Changelog\nauto: true\n---\n' source/tutorials/changelog.md
16-
sed -i -e '1i\
17-
---\ntitle: 更新日志\nauto: true\n---\n' source/zh-cn/tutorials/changelog.md
14+
sed -i -e '1i\---\ntitle: Changelog\nauto: true\n---\n' source/tutorials/changelog.md
15+
sed -i -e '1i\---\ntitle: 更新日志\nauto: true\n---\n' source/zh-cn/tutorials/changelog.md

Diff for: bin/build-contributors.sh

+6-9
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ sedi() {
1010
}
1111

1212
# create docs/themes/navy/layout/partial/all-contributors.swig
13-
cp .all-contributorsrc docs/.all-contributorsrc
14-
sedi \
15-
-e 's/README.md/docs\/themes\/navy\/layout\/partial\/all-contributors.swig/g' \
16-
-e 's/"contributorsPerLine": 7/"contributorsPerLine": 65535/g' \
17-
docs/.all-contributorsrc
18-
19-
touch docs/themes/navy/layout/partial/all-contributors.swig
20-
all-contributors --config docs/.all-contributorsrc generate
21-
sedi 's/<br \/>.*<\/td>/<\/a><\/td>/g' docs/themes/navy/layout/partial/all-contributors.swig
13+
awk '/ALL-CONTRIBUTORS-LIST:START/{flag=1;next}/ALL-CONTRIBUTORS-LIST:END/{flag=0}flag' README.md | \
14+
sed 's/<br \/>.*<\/td>/<\/a><\/td>/g' | \
15+
sed 's/width="[^"]*"//g' | \
16+
tr -d '\n' | \
17+
sed 's/<\/tr>\s*<tr>//g' \
18+
> docs/themes/navy/layout/partial/all-contributors.swig
2219

2320
# create docs/themes/navy/layout/partial/financial-contributors.swig
2421
awk '/FINANCIAL-CONTRIBUTORS-BEGIN/{flag=1;next}/FINANCIAL-CONTRIBUTORS-END/{flag=0}flag' README.md | \

0 commit comments

Comments
 (0)