yard-markdown-relative-links 0.2.0 → 0.3.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +5 -2
- data/lib/yard/relative_markdown_links/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 603408929174cb58c7ba1919487c35b0ee8ac45436eaf888408e115f1a6343ee
|
|
4
|
+
data.tar.gz: '0650109ce43f787a5036db724961bfffa8790fee3bbcc8399aeca81fc3e8b31c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8826ab8a61a6eb6cf53b3f9fa2c1ccc49f74e6ddd7499f8d4f0ca1382d1c99d055103d8b18dfeca72fdfa87cbba5a4c75fd13483b077c0a712f396e4dccd804
|
|
7
|
+
data.tar.gz: d1cf71c6eca19f1edfec0c9458054dcfe960e329678688f31a1c46d9d2ee1cac95a0c4a7e1764dcd16d9d7e4a9336db791172194819cdf98fd0b8467adfa1872
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.0] - 2026-03-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Corrected README usage to the actual YARD plugin identifier: `--plugin markdown-relative-links`
|
|
13
|
+
|
|
8
14
|
## [0.2.0] - 2026-03-03
|
|
9
15
|
|
|
10
16
|
### Changed
|
data/README.md
CHANGED
|
@@ -41,9 +41,12 @@ gem install yard-markdown-relative-links
|
|
|
41
41
|
Add this line to your application's `.yardopts`:
|
|
42
42
|
|
|
43
43
|
```
|
|
44
|
-
--plugin
|
|
44
|
+
--plugin markdown-relative-links
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
Important: the YARD plugin key is `markdown-relative-links`.
|
|
48
|
+
Do not use `--plugin relative_markdown_links`, `--plugin yard-relative_markdown_links`, or `--plugin yard-markdown-relative-links`.
|
|
49
|
+
|
|
47
50
|
You'll also need to make sure your Markdown files are processed by YARD. To include all Markdown files in your project, add the following lines to the end of your application's `.yardopts`:
|
|
48
51
|
|
|
49
52
|
```
|
|
@@ -55,7 +58,7 @@ You'll also need to make sure your Markdown files are processed by YARD. To incl
|
|
|
55
58
|
|
|
56
59
|
```
|
|
57
60
|
--markup markdown
|
|
58
|
-
--plugin
|
|
61
|
+
--plugin markdown-relative-links
|
|
59
62
|
--readme README.md
|
|
60
63
|
-
|
|
61
64
|
docs/*.md
|