Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
run: pip install mkdocs-material

- name: Build documentation
run: mkdocs build
run: mkdocs build -f zotero/mkdocs.yml

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
path: zotero/site

deploy:
if: github.ref == 'refs/heads/main'
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,6 @@ frontend/public/wasm/
# Local files that should be ignored
.ignore
.temp
*.tsbuildinfo
*.tsbuildinfo

/zotero/site
4 changes: 3 additions & 1 deletion zotero/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ node_modules
package-lock.json
yarn.lock
pnpm-lock.yaml
addon/content/styles/sciencelive.css
addon/content/styles/sciencelive.css
docs/
mkdocs.yml
14 changes: 7 additions & 7 deletions zotero/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Zotero](https://img.shields.io/badge/Zotero-7.0%2B-red)](https://www.zotero.org/)
[![Version](https://img.shields.io/github/v/release/ScienceLiveHub/zotero-nanopub-plugin)](https://github.com/ScienceLiveHub/zotero-nanopub-plugin/releases)
[![Version](https://img.shields.io/github/v/release/ScienceLiveHub/science-live-platform)](https://github.com/ScienceLiveHub/science-live-platform/releases)

Transform your Zotero library into a semantic web publishing platform. Create, sign, and publish nanopublications **entirely within Zotero** using an embedded form interface.

Expand Down Expand Up @@ -126,12 +126,12 @@ Flexible semantic statements:

## 📘 Documentation

**Full documentation:** http://sciencelive4all.org/zotero-nanopub-plugin/
**Full documentation:** http://sciencelive4all.org/zotero-plugin/

- [Installation Guide](http://sciencelive4all.org/zotero-nanopub-plugin/getting-started/installation/)
- [Quick Start](http://sciencelive4all.org/zotero-nanopub-plugin/getting-started/quick-start/)
- [Template Guide](http://sciencelive4all.org/zotero-nanopub-plugin/user-guide/templates/)
- [Architecture](http://sciencelive4all.org/zotero-nanopub-plugin/technical/architecture/)
- [Installation Guide](http://sciencelive4all.org/zotero-plugin/getting-started/installation/)
- [Quick Start](http://sciencelive4all.org/zotero-plugin/getting-started/quick-start/)
- [Template Guide](http://sciencelive4all.org/zotero-plugin/user-guide/templates/)
- [Architecture](http://sciencelive4all.org/zotero-plugin/technical/architecture/)

---

Expand Down Expand Up @@ -179,6 +179,6 @@ Built on:

## 📧 Contact

- **Issues:** [GitHub Issues](https://github.com/ScienceLiveHub/zotero-nanopub-plugin/issues)
- **Issues:** [GitHub Issues](https://github.com/ScienceLiveHub/science-live-platform/issues)
- **Email:** contact@vitenhub.no
- **Website:** https://sciencelive4all.org
2 changes: 1 addition & 1 deletion zotero/addon/content/preferences.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
class="zotero-text-link keyboard-clickable"
is="zotero-text-link"
role="link"
href="https://sciencelive4all.org/zotero-nanopub-plugin/"
href="https://sciencelive4all.org/zotero-plugin/"
value="Science Live - Zotero Nanopub Plugin"
></label>
</groupbox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pip install mkdocs-material
- Then you can generate the documentation:

```
mkdocs build
mkdocs build -f zotero/mkdocs.yml
```

- And serve it to view it:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion mkdocs.yml → zotero/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: Zotero Nanopublication Plugin
site_description: Create nanopublications from Zotero items and PDF highlights using Nanodash templates
site_url: https://sciencelivehub.github.io/science-live-platform/
site_url: https://sciencelive4all.org/zotero-plugin//
repo_url: https://github.com/ScienceLiveHub/science-live-platform
repo_name: ScienceLiveHub/science-live-platform

Expand Down
2 changes: 1 addition & 1 deletion zotero/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"bugs": {
"url": "https://github.com/ScienceLiveHub/science-live-platform/issues"
},
"homepage": "https://sciencelive4all.org/zotero-nanopub-plugin/",
"homepage": "https://sciencelive4all.org/zotero-plugin/",
"scripts": {
"start": "npm run build:embedded-css && zotero-plugin serve",
"build": "npm run build:embedded-css && zotero-plugin build && tsc --noEmit",
Expand Down
Loading