aslopcleaner 1.0.7 → 1.0.8
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,15 @@ High-performance CLI to normalize common LLM/AI Unicode punctuation and symbols
|
|
|
12
12
|
- Prompts once per file in interactive mode.
|
|
13
13
|
- Replaces everything automatically in non-interactive mode with `-y`.
|
|
14
14
|
|
|
15
|
+
## Run it
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
bunx aslopcleaner # Bun
|
|
19
|
+
npx aslopcleaner # npm
|
|
20
|
+
pnpx aslopcleaner # pnpm
|
|
21
|
+
yarn dlx aslopcleaner # Yarn
|
|
22
|
+
```
|
|
23
|
+
|
|
15
24
|
## Default replacements
|
|
16
25
|
|
|
17
26
|
### Dashes / hyphens
|
|
@@ -333,15 +342,6 @@ High-performance CLI to normalize common LLM/AI Unicode punctuation and symbols
|
|
|
333
342
|
- `╂` => `+` (box drawings light vertical and horizontal)
|
|
334
343
|
- `╋` => `+` (box drawings heavy vertical and horizontal)
|
|
335
344
|
|
|
336
|
-
## Run it
|
|
337
|
-
|
|
338
|
-
```bash
|
|
339
|
-
bunx aslopcleaner # Bun
|
|
340
|
-
npx aslopcleaner # npm
|
|
341
|
-
pnpx aslopcleaner # pnpm
|
|
342
|
-
yarn dlx aslopcleaner # Yarn
|
|
343
|
-
```
|
|
344
|
-
|
|
345
345
|
### Local testing
|
|
346
346
|
|
|
347
347
|
```bash
|