vitepress-linkcard 1.0.1 → 1.0.2
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 +15 -1
- package/dist/.cjs.min.js +1 -1
- package/dist/.esm.min.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ vitepress-linkcard
|
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/vitepress-linkcard)
|
|
8
8
|
[](https://www.npmjs.com/package/vitepress-linkcard)
|
|
9
|
-
[](/LICENSE)
|
|
10
10
|
|
|
11
11
|
[](https://vuejs.github.io/vitepress/v1/)
|
|
12
12
|
[](https://yarnpkg.com/)
|
|
@@ -70,6 +70,20 @@ Generates a link card when `@:` appended.
|
|
|
70
70
|
[example](@:https://example.com)
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
#### Add new file at root: `.linkcardrc`
|
|
74
|
+
|
|
75
|
+
File for storing cache. You can copy and paste it as is. In the next release, we'll make it so you don't have to create it manually.
|
|
76
|
+
|
|
77
|
+
```json
|
|
78
|
+
{
|
|
79
|
+
"https://example.com/": {
|
|
80
|
+
"description": "Example Website",
|
|
81
|
+
"logo": "https://example.com/example.png",
|
|
82
|
+
"title": "Example Title"
|
|
83
|
+
},
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
73
87
|
## Supported options
|
|
74
88
|
|
|
75
89
|
### borderColor
|
package/dist/.cjs.min.js
CHANGED
package/dist/.esm.min.js
CHANGED
package/package.json
CHANGED