File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1+ # !/usr/bin/env -S gitlint -C
12[ignore-by-title]
23regex =.*
34ignore =body-is-missing
Original file line number Diff line number Diff line change 1+ # !/usr/bin/env -S yamllint -c
12---
23extends : default
34
Original file line number Diff line number Diff line change 1+ # !/usr/bin/env -S scripts/generate-CITATION.cff.pl pyproject.toml
12---
23cff-version : 1.2.0
34message : If you use this software, please cite it as below.
45authors :
56 - family-names : Wu
67 given-names : Zhenyu
78 orcid : https://orcid.org/0000-0001-6478-9993
8- title : >-
9- sphinxcontrib-eval: Evaluate shell command or python code in sphinx and myst
9+ title : " %HERE%"
1010date-released : 2022-12-10
1111url : https://github.com/Freed-Wu/sphinxcontrib-eval
Original file line number Diff line number Diff line change 1+ # !/usr/bin/env -S perl -pi
2+ unless ($#ARGV < 0) {
3+ $name = $1 if / ^name = "([^"]*+)"/ ;
4+ $description = $1 if / ^description = "([^"]*+)"/ ;
5+ $url = $1 if / ^Source = "([^"]*+)"/ ;
6+ next ;
7+ };
8+ s / (?<=^title: ")([^"]*+)(?="$)/ $name : $description / ;
9+ s / (?<=^url: ")([^"]*+)(?="$)/ $url / ;
You can’t perform that action at this time.
0 commit comments