Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to merge implicit expect-actual declarations #2316

Merged
merged 17 commits into from
Feb 21, 2022
Prev Previous commit
Next Next commit
Add doc
  • Loading branch information
vmishenev committed Feb 21, 2022
commit bfaec2ed79532a90466d9c1348e5f06703441a76
6 changes: 6 additions & 0 deletions docs/src/doc/docs/user_guide/base-specific/frontend.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Keep in mind that this value will be passed exactly to the output html, so it ha
By setting a boolean property `separateInheritedMembers` dokka will split inherited members (like functions, properties etc.)
from ones declared in viewed class. Separated members will have it's own tabs on the page.

## Merging declarations with name clashing

By setting a boolean property `mergeImplicitExpectActualDeclarations` dokka will merge declarations that do not have `expect`/`actual` keywords but have the same fully qualified name.
The declarations will be displayed on one page.
By default, it is disabled. The page names of such declaration have a prefix that is the name of source set.

### Examples
In order to override a logo and style it accordingly a css file named `logo-styles.css` is needed:
```css
Expand Down