Skip to content

Commit

Permalink
Ignore group for docs
Browse files Browse the repository at this point in the history
Fixes #3187
  • Loading branch information
KronicDeth committed May 6, 2023
1 parent de37745 commit 66cb85e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,8 @@
* [#3185](https://github.com/KronicDeth/intellij-elixir/pull/3213) - [@KronicDeth](https://github.com/KronicDeth)
* Replace uses of `Cell.horizontalAlign(HorizontalAlign)`
The API is scheduled for removal and is replaced by `Call.align(AlignX.FILL)`.
* [#3214](https://github.com/KronicDeth/intellij-elixir/pull/3214) - [@KronicDeth](https://github.com/KronicDeth)
* Ignore `group:` for docs.

## v15.0.1

Expand Down
1 change: 1 addition & 0 deletions resources/META-INF/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ <h1>v15.0.2</h1>
<p>Replace uses of <code>Cell.horizontalAlign(HorizontalAlign)</code></p>
<p>The API is scheduled for removal and is replaced by <code>Call.align(AlignX.FILL)</code>.</p>
</li>
<li>Ignore <code>group:</code> for docs.</li>
</ul>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion src/org/elixir_lang/injection/markdown/Injector.kt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Injector : MultiHostInjector {
is QuotableKeywordPair -> {
when (val key = documentation.keywordKey.text) {
"deprecated" -> getLanguagesToInjectInQuote(registrar, documentation.keywordValue)
"authors", "guard", "request_body", "responses", "since", "type" -> Unit
"authors", "group", "guard", "request_body", "responses", "since", "type" -> Unit
else -> {
Logger.error(
javaClass,
Expand Down

0 comments on commit 66cb85e

Please sign in to comment.