aboutsummaryrefslogtreecommitdiff
path: root/core/testdata
AgeCommit message (Collapse)Author
2016-07-06handle code blocks escaped with multiple backticks correctly; generate extra ↵Dmitry Jemerov
backticks if text in code block contains backticks (KT-12998, KT-12999)
2016-07-06don't lose exclamation marks in code blocks (KT-13000)Dmitry Jemerov
2016-07-04Rewrite output generation; much cleaner Markdown and HTML generated. ↵Dmitry Jemerov
Resolves #71, #72
2016-07-01extract stateful builder out of FormatServiceDmitry Jemerov
2016-07-01introduce GFM output formatDmitry Jemerov
2016-06-30Don't include internal members in generated javadoc. Resolves #75Dmitry Jemerov
2016-06-30Generate correct signature for methods with parameters of Java primitive ↵Dmitry Jemerov
types. Resolves #76
2016-06-30add test for @JvmName support in javadocDmitry Jemerov
2016-05-10update to kotlin 1.0.3-dev-700; don't use kotlin-for-upsource artifact, use ↵Dmitry Jemerov
regular kotlin-compiler and kotlin-ide-common instead
2016-04-29don't report type parameters for array classes; don't report qualified names ↵Dmitry Jemerov
for stdlib types such as java.lang.String
2016-04-28SOE protection when calculating type signature. Resolves #69Dmitry Jemerov
2016-04-28add test to ensure that @receiver is renderedDmitry Jemerov
2016-04-28test to ensure KT-10998 doesn't happen in DokkaDmitry Jemerov
2016-04-28correctly render Markdown in link text (KT-11791)Dmitry Jemerov
2016-04-28give some descriptions to type parameters to test rendering betterDmitry Jemerov
2016-04-27Use FQ name instead of simple name to identify array classes. Resolves #68Dmitry Jemerov
2016-04-01KT-11329: improve formatting of KDoc sectionsDmitry Jemerov
2016-04-01KT-11530: when the receiver type of an extension is generic, use subclass ↵Dmitry Jemerov
instead of subtype check to determine applicability (subtype check doesn't work because type parameter of receiver type is unrelated to type parameter of base class)
2016-03-31Don't lose line breaks in code blocks. Resolves #54Dmitry Jemerov
2016-03-31fix testdataDmitry Jemerov
2016-03-31Correctly format code samples in overload groups. Resolves #55Dmitry Jemerov
2016-03-31Fix the implementation of containingClass() in javadoc adapters. Resolves #57Dmitry Jemerov
2016-02-02restore handling of @suppress tags in javadoc commentsDmitry Jemerov
2016-01-28put the most important information required to identify an element in the ↵Dmitry Jemerov
beginning of the page title
2016-01-25update Dokka to internal RC: remove usages of kotlin.testDmitry Jemerov
2016-01-12don't sort enum values alphabetically ↵Dmitry Jemerov
(https://github.com/Kotlin/dokka/issues/47)
2016-01-12generate signature-based anchors for overloads; use signature instead of ↵Dmitry Jemerov
name as an anchor for in-page links
2016-01-12Merge pull request #48 from ingokegel/masterDmitry Jemerov
@Suppress("NOT_DOCUMENTED"), fix for linking to targets with underscores, gradle plugin improvements
2016-01-08link to JDK classes (KT-10452)Dmitry Jemerov
2016-01-08line breaks between parametersDmitry Jemerov
2016-01-08include extension function in the list of extensions for a class if the ↵Dmitry Jemerov
class is an upper bound of the receiver type parameter
2016-01-08rewrite propagation of extension functions to subclasses to handle shadowing ↵Dmitry Jemerov
and applicability more correctly
2016-01-06Linking to a target with underscores did not workingo
For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore. Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node is not sufficient.
2016-01-05distinguish inherited companion object membersDmitry Jemerov
2016-01-05render multiple type parameter constraints according to current Kotlin syntaxDmitry Jemerov
2016-01-05always include type parameters in the signature of a typeDmitry Jemerov
2016-01-04separate groups for annotations and exceptions in the members listDmitry Jemerov
2016-01-04StructuredFormatService restructured so that it makes more sense: we're ↵Dmitry Jemerov
either generating a doc for a group of overloads (which have no members) or for a single node (where a list of members can be displayed)
2016-01-04Embedded underscores in words like word_with_underscores or single embedded ↵Ingo Kegel
stars like embedded*star were removed in the output.
2015-12-03restructure Dokka build to use Gradle for everything except for the Maven pluginDmitry Jemerov