Releases: tnorbye/kdoc-formatter
Releases · tnorbye/kdoc-formatter
1.6.8 IDE-only update: Intellij 2025.2 support
1.6.7 Bug fixes
1.6.4: Change continuation indent from 4 to 3
1.6.4
- Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview treats an indent of 4 or more as preformatted text even on a continued line; Dokka itself (and Markdown) does not.
- Add ability to override the continuation indent in the IDE plugin settings.
- Don't reorder
@sample
tags (backported facebook/ktfmt#406)
1.6.3: Compatibility with IntelliJ 2024.2, and K2 plugin compatibility
Merge pull request #99 from tnorbye/1.6.3 1.6.3: Compatibility with IntelliJ 2024.2 EAP and K2 compatibility
1.6.2: Compatibility with IntelliJ 2024.1
This release updates the IntelliJ plugin to be compatible with IntelliJ 2024.1. (It also rebuilds everything with newer versions of Kotlin, IntelliJ release plugin, changelog plugin, etc.)
1.6.0: Update dependencies and minor bug fixes
This release just picks up a couple of minor bug fixes and updates the dependencies (like Kotlin, the JDK (to 17), etc.
1.5.9: Compatibility with IntelliJ 2023.1
Compatibility with IntelliJ 2023.1.
1.5.8: Bugfixes
- Fixed a number of bugs:
- #84: Line overrun when using closed-open interval notation
- More gracefully handle unterminated [] references (for example when
comment is using it in things like [closed, open) intervals) - Recognize and convert accidentally capitalized kdoc tags like @see
- If you have a [ref] which spans a line such that the # ends up as a
new line, don't treat this as a "# heading". - Make sure we don't line break at an expression starting with ">"
since that would turn into a quoted line. - If you're using optimal line breaking and there's a really long,
unbreakable word in the paragraph, switch that paragraph over to
greedy line breaking (to make the paragraph better balanced since
the really long word throws the algorithm off.) - Fix a few scenarios where markup conversion from <p> and </p>
wasn't converting everything. - Allow @Property[name], not just @param[name]
- The --hanging-indent flag now also sets the nested list indent
(if >= 3)
- Some minor code cleanup.
v1.5.7: Merge pull request #81 from tnorbye/1.5.7
1.5.6 Override line width
This release only fixes a bug in the IDE plugin: the override line width (and override comment width) settings were not working properly.