You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String render = new MarkdownRender().render(diff);
121
153
try {
@@ -130,11 +162,13 @@ try {
130
162
```
131
163
132
164
### Extensions
165
+
133
166
This project uses Java Service Provider Inteface (SPI) so additional extensions can be added.
134
167
135
168
To build your own extension, you simply need to create a `src/main/resources/META-INF/services/com.qdesrame.openapi.diff.core.compare.ExtensionDiff` file with the full classname of your implementation. Your class must also implement the `com.qdesrame.openapi.diff.core.compare.ExtensionDiff` interface. Then, including your library with the `openapi-diff` module will cause it to be triggered automatically.
136
169
137
-
# Example
170
+
# Examples
171
+
138
172
### CLI Output
139
173
140
174
```text
@@ -233,6 +267,7 @@ To build your own extension, you simply need to create a `src/main/resources/MET
233
267
```
234
268
235
269
### Markdown
270
+
236
271
```markdown
237
272
### What's New
238
273
---
@@ -307,6 +342,7 @@ To build your own extension, you simply need to create a `src/main/resources/MET
307
342
```
308
343
309
344
# License
345
+
310
346
openapi-diff is released under the Apache License 2.0.
0 commit comments