ep_special_characters 0.0.59 → 0.0.60

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.
Files changed (2) hide show
  1. package/AGENTS.md +68 -0
  2. package/package.json +1 -1
package/AGENTS.md ADDED
@@ -0,0 +1,68 @@
1
+ # Agent Guide — ep_special_characters
2
+
3
+ Insert special characters into a pad.
4
+
5
+ ## Tech stack
6
+
7
+ * Etherpad plugin framework (hooks declared in `ep.json`)
8
+ * EJS templates rendered server-side via `eejsBlock_*` hooks
9
+
10
+ ## Project structure
11
+
12
+ ```
13
+ ep_special_characters/
14
+ ├── AGENTS.md
15
+ ├── CONTRIBUTING.md
16
+ ├── ep.json
17
+ ├── hooks.js
18
+ ├── package.json
19
+ ├── static/
20
+ │ ├── css/
21
+ │ ├── html/
22
+ │ ├── js/
23
+ │ ├── tests/
24
+ ├── templates/
25
+ │ ├── editbarButtons.ejs
26
+ │ ├── modals.ejs
27
+ │ ├── scripts.ejs
28
+ │ ├── special_characters_menu.ejs
29
+ │ ├── styles.ejs
30
+ ```
31
+
32
+ ## Helpers used
33
+
34
+ _None — `ep_plugin_helpers` is not a dependency. Adoption is part of the helpers-adoption sweep (Phase 4)._
35
+
36
+
37
+ ## Helpers NOT used
38
+
39
+ _To be audited in the helpers-adoption sweep (Phase 4)._
40
+
41
+
42
+ ## Running tests locally
43
+
44
+ `ep_special_characters` runs inside Etherpad's test harness. From an etherpad checkout that has installed this plugin via `pnpm run plugins i --path ../ep_special_characters`:
45
+
46
+ ```bash
47
+ # Backend (Mocha) — harness boots its own server
48
+ pnpm --filter ep_etherpad-lite run test
49
+
50
+ # Playwright — needs `pnpm run dev` in a second terminal
51
+ pnpm --filter ep_etherpad-lite run test-ui
52
+ ```
53
+
54
+ ## Standing rules for agent edits
55
+
56
+ * PRs target `main`. Linear commits, no merge commits.
57
+ * Every bug fix includes a regression test in the same commit.
58
+ * All user-facing strings in `locales/`. No hardcoded English in templates.
59
+ * No hardcoded `aria-label` on icon-only controls — etherpad's html10n auto-populates `aria-label` from the localized string when (a) the element has a `data-l10n-id` and (b) no author-supplied `aria-label` is present. Adding a hardcoded English `aria-label` blocks that and leaves it untranslated. (See `etherpad-lite/src/static/js/vendors/html10n.ts:665-678`.)
60
+ * No nested interactive elements (no `<button>` inside `<a>`).
61
+ * LLM/Agent contributions are explicitly welcomed by maintainers.
62
+
63
+ ## Quick reference: hooks declared in `ep.json`
64
+
65
+ * Server: `eejsBlock_editbarMenuLeft`, `eejsBlock_scripts`, `eejsBlock_styles`, `eejsBlock_body`, `eejsBlock_dd_insert`
66
+ * Client: `aceInitInnerdocbodyHead`, `aceAttribsToClasses`, `aceCreateDomLine`
67
+
68
+ When adding a hook, register it in both `ep.json` *and* the matching `exports.<hook> = ...` in the JS file.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ep_special_characters",
3
3
  "description": "Insert special characters into a pad",
4
- "version": "0.0.59",
4
+ "version": "0.0.60",
5
5
  "author": {
6
6
  "name": "Johnyma22",
7
7
  "email": "john@mclear.co.uk",