Skip to content

Commit

Permalink
Remove GitLab repo
Browse files Browse the repository at this point in the history
  • Loading branch information
bimlas committed Feb 4, 2024
1 parent fddda21 commit 23db2a4
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 12 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
on:
push:
branches:
- master
jobs:
deploy:
name: Build & Deploy
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Build
run: |
npm ci
npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./output
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/.idea
/*.iml
/package*.json
/node_modules
**/$__StoryList.tid
node_modules/
tiddlers/$__StoryList.tid
output/
7 changes: 3 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
:demo-page: https://bimlas.gitlab.io/tw5-kin-filter
:json: https://bimlas.gitlab.io/tw5-kin-filter/tw5-kin-filter.json
:demo-page: https://bimlas.github.io/tw5-kin-filter
:json: https://bimlas.github.io/tw5-kin-filter/tw5-kin-filter.json

= Kin filter plugin for TiddlyWiki 5

For details, see the link:{demo-page}[demo page].

* https://gitlab.com/bimlas/tw5-kin-filter (official repository)
* https://github.com/bimlas/tw5-kin-filter (mirror, please star if you like it)
* https://github.com/bimlas/tw5-kin-filter (please star if you like it)

== What others say about it?

Expand Down
24 changes: 24 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "tw5-kin-filter",
"author": "bimlas",
"scripts": {
"build": "npm run build:html; npm run build:json",
"build:html": "TIDDLYWIKI_PLUGIN_PATH=plugins tiddlywiki --build index",
"build:json": "TIDDLYWIKI_PLUGIN_PATH=plugins tiddlywiki --render '$:/plugins/bimlas/kin-filter' tw5-kin-filter.json text/plain '$:/core/templates/json-tiddler'"
},
"dependencies": {
"tiddlywiki": "^5.3.3"
}
}
3 changes: 1 addition & 2 deletions plugins/kin-filter/README/syntax.tid
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ type: text/vnd.tiddlywiki

! Kin filter operator

* https://gitlab.com/bimlas/tw5-kin-filter (official repository)
* https://github.com/bimlas/tw5-kin-filter (mirror, please star if you like it)
* https://github.com/bimlas/tw5-kin-filter (please star if you like it)

The purpose of the ''kin'' operator with examples:

Expand Down
2 changes: 1 addition & 1 deletion plugins/kin-filter/plugin.info
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "bimlas",
"version": "1.0.0",
"core-version": ">=5.1.18",
"source": "https://gitlab.com/bimlas/tw5-kin-filter",
"source": "https://github.com/bimlas/tw5-kin-filter",
"plugin-type": "plugin",
"list": "README/syntax README/examples"
}

0 comments on commit 23db2a4

Please sign in to comment.