Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukekarrys/typedoc-markdown-hacks
https://github.com/lukekarrys/typedoc-markdown-hacks
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukekarrys/typedoc-markdown-hacks
- Owner: lukekarrys
- Created: 2024-12-20T22:59:21.000Z (18 days ago)
- Default Branch: main
- Last Pushed: 2024-12-21T00:57:07.000Z (18 days ago)
- Last Synced: 2025-01-02T23:49:45.090Z (5 days ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```sh
# install deps
npm install
# run example which will build two folders and diff them
npm run example
```````patch
========================================
asserts-template-literal.md
========================================
- Original
+ Hacked@@ -32,3 +32,3 @@
- \`sha512-$\{string\}\`
+ `` `sha512-${string}` ``@@ -50,3 +50,3 @@
- asserts i is \`sha512-$\{string\}\`
+ `` asserts i is `sha512-${string}` ``@@ -104,3 +104,3 @@
- i is \`sha512-$\{string\}\`
+ `` i is `sha512-${string}` ``========================================
constructor-override.md
========================================
- Original
+ Hacked@@ -22,3 +22,4 @@
- `LRUCache<
+ ```ts
+ LRUCache<
CacheFetchContext,
@@ -26,3 +27,4 @@
CacheFetchContext
- >.constructor`
+ >.constructor
+ ```========================================
index-signature.md
========================================
- Original
+ Hacked@@ -10,9 +10,11 @@
- \[`key`:
- \| \`git·$\{string\}·$\{string\} $\{string\}\`
- \| \`remote·$\{string\}·$\{string\} $\{string\}\`\]:
- \| \`dev git·$\{string\}·$\{string\}\`
- \| \`dev remote·$\{string\}·$\{string\}\`
- \| \`prod git·$\{string\}·$\{string\}\`
- \| \`prod remote·$\{string\}·$\{string\}\`
+ ```ts
+ [key:
+ | `git·${string}·${string} ${string}`
+ | `remote·${string}·${string} ${string}`]:
+ | `dev git·${string}·${string}`
+ | `dev remote·${string}·${string}`
+ | `prod git·${string}·${string}`
+ | `prod remote·${string}·${string}`
+ ```
````