varabyte / kobweb-intellij-plugin

An official IntelliJ IDE plugin to include Kobweb-specific enhancements and understanding to your project
Apache License 2.0
10 stars 2 forks source link

Easy linking to mozilla docs, e.g. when looking at quick docs for Kobweb modifiers #13

Open bitspittle opened 5 months ago

bitspittle commented 5 months ago

This will require a bunch of tagging in Kobweb with links to the source mozilla sites, but it might be nice to open a playground within your IDE to those CSS properties.

/**
 * ...
 * @see <a href="https://mozilla.com/...">...</a>
 */
fun Modifier.font(...)

results in an action which opens a floating web page inside your IDE that goes to the linked mozilla page. (Basically, search every header doc for each function call and search for a mozilla link in there)

We could support opening the page both with a quick action but ALSO with a gutter action too. That could be a really nice experience for bridging Kotlin and CSS.