Skip to content

Commit

Permalink
Deploying to gh-pages from @ 78a4676 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
northword committed Sep 24, 2023
0 parents commit 71c255f
Show file tree
Hide file tree
Showing 58 changed files with 1,197 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Zotero 插件下载

![GitHub 自动构建状态](https://img.shields.io/github/actions/workflow/status/northword/zotero-plugins/main.yml)
[![Netlify 部署状态](https://api.netlify.com/api/v1/badges/bae2ef92-2f0a-4076-ae7c-6619933cdf39/deploy-status)](https://app.netlify.com/sites/zotero-plugins/deploys)
![GitHub 最后更新时间](https://img.shields.io/github/last-commit/northword/zotero-plugins/gh-pages)
![最后更新](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fnorthword%2Fzotero-plugins%2Fgh-pages%2Fdist%2Fshields.json&query=%24.lastUpdate&label=%E6%9C%80%E5%90%8E%E6%9B%B4%E6%96%B0)
[![Page Views Count](https://badges.toozhao.com/badges/01H9T10RA7708BEZZ78B6ZW9VV/green.svg)](https://badges.toozhao.com/stats/01H9T10RA7708BEZZ78B6ZW9VV "Get your own page views count badge on badges.toozhao.com")

<details>

<summary>本页面主地址为:plugins.zotero-chinese.com,点击查看其他备用地址</summary>

- **Zotero 中文社区主域名:<https://plugins.zotero-chinese.com>**
- Netlify: <https://zotero-plugins.netlify.app/>
- GitHub Pages: <https://zotero-chinese.github.io/zotero-plugins/>

</details>

本页面为每一个插件都提供了多个下载地址,请逐个尝试选择可用的地址。火狐浏览器用户请通过在链接上右击,选择“另存为”来下载 `XPI` 包。插件之间可能存在冲突,**建议按需安装**

Zotero 中文交流群 913637964,617148016,893963769,666489129,145248977,317995116,962963257(加一个群即可)。独学而无友,则孤陋而寡闻。

?> 如果你对本页面有任何建议或反馈,请 [填写表格](https://www.kdocs.cn/wo/sl/v14cwJXX) 或前往 [GitHub 仓库提 issue](https://github.com/zotero-chinese/zotero-plugins)

[plgins info](./dist/plugins.md ':include')
99 changes: 99 additions & 0 deletions charts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<script src="https://code.highcharts.com/highcharts.src.js"></script>
<script src="https://code.highcharts.com/modules/boost.src.js"></script>
<script src="https://code.highcharts.com/highcharts-more.src.js"></script>
<script src="https://code.highcharts.com/modules/wordcloud.src.js"></script>
<script src="https://code.highcharts.com/modules/exporting.src.js"></script>
<script src="https://code.highcharts.com/stock/modules/stock.src.js"></script>
<script src="https://code.highcharts.com/dashboards/dashboards.src.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.src.js"></script>
<script src="https://code.highcharts.com/modules/mouse-wheel-zoom.src.js"></script>
<script src="https://code.highcharts.com/modules/no-data-to-display.src.js"></script>
<script src="https://code.highcharts.com/dashboards/modules/dashboards-plugin.src.js"></script>
<style>
@import url("https://code.highcharts.com/css/highcharts.css");
@import url("https://code.highcharts.com/css/dashboards.css");
@import url("https://code.highcharts.com/css/datagrid.css");

:root {
--highcharts-color-101: #a371f7;
--highcharts-color-102: #3fb950;
}

.highcharts-color-101 {
fill: var(--highcharts-color-101);
stroke: var(--highcharts-color-101);
}

.highcharts-color-102 {
fill: var(--highcharts-color-102);
stroke: var(--highcharts-color-102);
}

#title h1 {
text-align: center;
}

.stargazers-pie-plugin {
stroke-width: 2px;
}

.trending-tooltip {
display: flex;
flex-direction: row;
align-items: center;
}

.trending-tooltip>:first-child {
background-size: cover;
border-radius: 8px;
margin-right: 8px;
height: 56px;
width: 56px;
}

.trending-tooltip>:last-child {
display: flex;
flex-direction: column;
justify-content: space-between;
}

.trending-tooltip>:last-child>:first-child {
border-bottom: 1px solid;
margin-bottom: 3px;
}

.trending-tooltip>:last-child>:last-child {
display: flex;
/* text-wrap: pretty; */
}
</style>
</head>

<body>
<div id="container"></div>
<script>
Highcharts.Templating.helpers.log = function () {
console.debug(arguments[0].ctx);
};
Math.wordCloudEasing = function (pos) {
if (pos < 1 / 2.75)
return 7.5625 * pos * pos;
if (pos < 2 / 2.75)
return 7.5625 * (pos -= 1.5 / 2.75) * pos + 0.75;
if (pos < 2.5 / 2.75)
return 7.5625 * (pos -= 2.25 / 2.75) * pos + 0.9375;
return 7.5625 * (pos -= 2.625 / 2.75) * pos + 0.984375;
};
Highcharts.getJSON(
'./dist/charts.json',
data => console.debug(Dashboards.board("container", data))
);
</script>
</body>

</html>
1 change: 1 addition & 0 deletions dist/charts.json

Large diffs are not rendered by default.

Loading

0 comments on commit 71c255f

Please sign in to comment.