merge origin

This commit is contained in:
Kaz Saita(WSL2) 2024-02-12 11:54:57 +09:00
commit 26de2abefc
4 changed files with 96 additions and 3 deletions

45
.github/workflows/deploy.yml vendored Normal file
View file

@ -0,0 +1,45 @@
name: Deploy Quartz site to GitHub Pages
on:
push:
branches:
- v4
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for git info
- uses: actions/setup-node@v3
with:
node-version: 18.14
- name: Install Dependencies
run: npm ci
- name: Build Quartz
run: npx quartz build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: public
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

24
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,24 @@
{
"editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"files.defaultLanguage": "markdown",
"markdownlint.config": {
"default": true,
"MD034": false,
"MD025": false,
"MD018": false
},
"svn.ignoreMissingSvnWarning": true
}

24
content/.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,24 @@
{
"editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"files.defaultLanguage": "markdown",
"markdownlint.config": {
"default": true,
"MD034": false,
"MD025": false,
"MD018": false
},
"svn.ignoreMissingSvnWarning": true
}

View file

@ -41,9 +41,9 @@ export default ((userOpts?: Partial<Options>) => {
<div class="section">
<div class="desc">
{/*<h3>*/}
<a href={resolveRelative(fileData.slug!, page.slug!)} class="internal">
{title}
</a>
<a href={resolveRelative(fileData.slug!, page.slug!)} class="internal">
{title}
</a>
{/*</h3>*/}
</div>
</div>