-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3239931
commit a409656
Showing
75 changed files
with
5,162 additions
and
1,021 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,17 @@ | ||
name: CI tests | ||
on: [push] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: install node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16.x | ||
- run: npm install -g mocha | ||
- run: npm install -g citeproc-test-runner | ||
- run: cslrun -a --reporter spec |
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,7 @@ | ||
*~ | ||
.cslTestFixtures | ||
ignored | ||
node_modules | ||
test | ||
.cslValidationPos | ||
cslrun.yaml |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. |CCBYSA| raw:: html | ||
|
||
<div style="width:80px !important;"><a alt="CCBYSA" href="http://creativecommons.org/licenses/by-sa/3.0/"><img src="_static/images/cc-by-sa-80x15.png"/></a></div> | ||
|
||
.. |CCBYSA-SUBDIR| raw:: html | ||
|
||
<div style="width:80px !important;"><a alt="CCBYSA" href="http://creativecommons.org/licenses/by-sa/3.0/"><img src="../_static/images/cc-by-sa-80x15.png"/></a></div> | ||
|
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,58 @@ | ||
>>===== MODE =====>> | ||
bibliography | ||
<<===== MODE =====<< | ||
|
||
|
||
|
||
>>===== RESULT =====>> | ||
<div class="csl-bib-body"> | ||
<div class="csl-entry"><b>Doe</b>, <b>J.</b> Q.</div> | ||
</div> | ||
<<===== RESULT =====<< | ||
|
||
|
||
>>===== CSL =====>> | ||
<style | ||
xmlns="http://purl.org/net/xbiblio/csl" | ||
class="in-text" | ||
version="1.0"> | ||
<info> | ||
<id /> | ||
<title /> | ||
<updated>2009-08-10T04:49:00+09:00</updated> | ||
</info> | ||
<macro name="author"> | ||
<names variable="author"> | ||
<name name-as-sort-order="all" and="symbol" sort-separator=", " initialize-with=". " delimiter=", " delimiter-precedes-last="always"/> | ||
</names> | ||
</macro> | ||
<citation> | ||
<layout> | ||
<text macro="author"/> | ||
</layout> | ||
</citation> | ||
<bibliography> | ||
<layout> | ||
<text macro="author"/> | ||
</layout> | ||
</bibliography> | ||
</style> | ||
|
||
|
||
<<===== CSL =====<< | ||
|
||
|
||
>>===== INPUT =====>> | ||
[ | ||
{ | ||
"author": [ | ||
{ | ||
"family": "<b>Doe</b>", | ||
"given": "<b>John</b> Quiggly" | ||
} | ||
], | ||
"id": "ITEM-1", | ||
"type": "book" | ||
} | ||
] | ||
<<===== INPUT =====<< |
Oops, something went wrong.