Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zmoyi/WalineJson

一款基于Waline客户端的typecho插件
https://github.com/zmoyi/WalineJson

typecho typecho-plugin waline

Last synced: about 1 month ago
JSON representation

一款基于Waline客户端的typecho插件

Awesome Lists containing this project

README

        

### 客户端安装

```html

```

## HTML 引入 (客户端)

在你的网页中进行如下设置:

1. 使用 CDN 引入 Waline: `//cdn.jsdelivr.net/npm/@waline/client`。

2. 创建 `` 标签使用 `Waline()` 初始化,并传入必要的 `el` 与 `serverURL` 选项。

- `el` 选项是 Waline 渲染使用的元素,你可以设置一个字符串形式的 CSS 选择器或者一个 HTMLElement 对象。
- `serverURL` 是服务端的地址,即上一步获取到的值。

```html
<head>
<!-- ... -->
<script src="//cdn.jsdelivr.net/npm/@waline/client">






Waline({
el: '#waline',
serverURL: 'https://your-domain.vercel.app',
});


```

3. 评论服务此时就会在你的网站上成功运行 🎉

### 配置

**大部分配置和waline官网配置一样**

```html

Waline({
el: '#waline',
serverURL: 'your domain name/api/',
path:'<?php $this->cid() ?>',
dark:'body[class="uk-light"]',
avatar: 'retro',
copyright: false,
math:true,
highlight: 'github-dark-dimmed',
login:'disable'

});

```