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);
122
153
try {
@@ -131,11 +162,13 @@ try {
131
162
```
132
163
133
164
### Extensions
165
+
134
166
This project uses Java Service Provider Inteface (SPI) so additional extensions can be added.
135
167
136
-
To build your own extension, you simply need to create a `src/main/resources/META-INF/services/com.qdesrame.openapi.diff.compare.ExtensionDiff` file with the full classname of your implementation. Your class must also implement the `com.qdesrame.openapi.diff.compare.ExtensionDiff` interface. Then, including your library with the `openapi-diff` module will cause it to be triggered automatically.
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.
169
+
170
+
# Examples
137
171
138
-
# Example
139
172
### CLI Output
140
173
141
174
```text
@@ -234,6 +267,7 @@ To build your own extension, you simply need to create a `src/main/resources/MET
234
267
```
235
268
236
269
### Markdown
270
+
237
271
```markdown
238
272
### What's New
239
273
---
@@ -308,10 +342,12 @@ To build your own extension, you simply need to create a `src/main/resources/MET
308
342
```
309
343
310
344
# License
345
+
311
346
openapi-diff is released under the Apache License 2.0.
0 commit comments