-
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.
Merge branch 'main' into dependabot/npm_and_yarn/retext-spell-6.1.0
- Loading branch information
Showing
39 changed files
with
18,523 additions
and
13,291 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 |
---|---|---|
|
@@ -17,12 +17,12 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- uses: gittools/actions/gitversion/setup@v0.10.2 | ||
- uses: gittools/actions/gitversion/setup@v3.1.11 | ||
with: | ||
versionSpec: '5.x.x' | ||
|
||
- id: gitversion | ||
uses: gittools/actions/gitversion/execute@v0.10.2 | ||
uses: gittools/actions/gitversion/execute@v3.1.11 | ||
|
||
- name: Generate variables | ||
id: variables | ||
|
@@ -42,7 +42,7 @@ jobs: | |
GITHUB_ACTOR_EMAIL: [email protected] | ||
GITHUB_REPO: https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | ||
run: | | ||
docker-compose run \ | ||
docker compose run \ | ||
-e GITHUB_REPOSITORY_URL=${{ needs.variables.outputs.repository_url }} \ | ||
jekyll deploy \ | ||
--env=production |
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
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
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,11 +1,26 @@ | ||
{%- comment -%} | ||
**Parameters | ||
content(required): What will be displayed inside the accordion when expanded. | ||
header_collapse_text: Text to display on the collapse header. If not supplied the text 'Hide fields' will be used. | ||
header_collapse_css: CSS class to apply to the text on the collapse header. If not supplied default style will be used. | ||
header_expand_text: Text to display on the expand header. If not supplied the text 'Show fields' will be used. | ||
header_expand_css: CSS class to apply to the text on the expand header. If not supplied default style will be used. | ||
accordion_id: Id of the accordion. If not supplied 'accordion-1' will be used. | ||
{%- endcomment -%} | ||
|
||
{% assign content = include.content | markdownify%} | ||
{% assign accordion_id = include.accordion_id | default: 'accordion-1' %} | ||
{% assign header_collapse_text = include.header_collapse_text | default: 'Hide fields'%} | ||
{% assign header_collapse_css = include.header_collapse_css%} | ||
{% assign header_expand_text = include.header_expand_text | default: 'Show fields'%} | ||
{% assign header_expand_css = include.header_expand_css%} | ||
|
||
<div class="accordion"> | ||
<button type="button" class="accordion-header" aria-expanded="false" aria-controls="exp-1"> | ||
<span class="mr-3 show">Show fields</span> | ||
<span class="mr-3 hide">Hide fields</span> | ||
<button type="button" class="accordion-header" aria-expanded="false" aria-controls="{{accordion_id}}"> | ||
<span class="mr-3 show {{header_expand_css}}">{{header_expand_text}}</span> | ||
<span class="mr-3 hide {{header_collapse_css}}">{{header_collapse_text}}</span> | ||
</button> | ||
<div class="accordion-body" id="exp-1"> | ||
<div class="accordion-body" id="{{accordion_id}}"> | ||
{{ content }} | ||
</div> | ||
</div> | ||
</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
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,23 @@ | ||
{%- comment -%} | ||
**Parameters | ||
title: Title | ||
header: header content | ||
json: json content | ||
{%- endcomment -%} | ||
|
||
<p class="code-view-header"> | ||
{{ include.title}} | ||
{% if include.json %} | ||
<button aria-describedby="tooltipCopy" class="code-view-copy tooltip" aria-label="Copy json to clipboard" value='{{include.json}}' onclick='javascript:navigator.clipboard.writeText(this.value)'><i class="at-clipboard small" aria-hidden="true"></i><div role="tooltip">Copy json to clipboard</div></button> | ||
{% endif %} | ||
</p> | ||
{% if include.header %} | ||
````http | ||
{{include.header}} | ||
```` | ||
{% endif %} | ||
{% if include.json %} | ||
````jsonc | ||
{{include.json}} | ||
```` | ||
{% endif %} |
Oops, something went wrong.