ep_show_whitespace 0.0.49 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -1
- package/demo.gif +0 -0
- package/demo.png +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
|
-
 [](https://github.com/ether/ep_show_whitespace/actions/workflows/test-and-release.yml)
|
|
2
2
|
|
|
3
3
|
Shows trailing whitespace on a line within Etherpad
|
|
4
4
|
|
|
5
5
|
# License
|
|
6
6
|
|
|
7
7
|
Apache 2
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
Install from the Etherpad admin UI (**Admin → Manage Plugins**,
|
|
12
|
+
search for `ep_show_whitespace` and click *Install*), or from the Etherpad
|
|
13
|
+
root directory:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
pnpm run plugins install ep_show_whitespace
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
> ⚠️ Don't run `npm i` / `npm install` yourself from the Etherpad
|
|
20
|
+
> source tree — Etherpad tracks installed plugins through its own
|
|
21
|
+
> plugin-manager, and hand-editing `package.json` can leave the
|
|
22
|
+
> server unable to start.
|
|
23
|
+
|
|
24
|
+
After installing, restart Etherpad.
|
package/demo.gif
ADDED
|
Binary file
|
package/demo.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ep_show_whitespace",
|
|
3
3
|
"description": "Show trailing whitespace",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.51",
|
|
5
5
|
"author": "johnyma22 (John McLear) <john@mclear.co.uk>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"eslint": "^8.57.1",
|
|
16
|
-
"eslint-config-etherpad": "^4.0.
|
|
17
|
-
"typescript": "^6.0.
|
|
16
|
+
"eslint-config-etherpad": "^4.0.5",
|
|
17
|
+
"typescript": "^6.0.3"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"lint": "eslint .",
|