aboutsummaryrefslogtreecommitdiff
path: root/test/src
AgeCommit message (Collapse)Author
2015-09-09don't duplicate 'abstract' and 'sealed' modifiersDmitry Jemerov
2015-09-09render annotations with @; render only @MustBeDocumented annotations; render ↵Dmitry Jemerov
all modifiers
2015-09-09default visibility is publicDmitry Jemerov
2015-09-08fix HTML entity handling after changes in markdown parser; remove detail ↵Dmitry Jemerov
count assertions from tests
2015-09-07work in progress on updating Dokka to latest Kotlin (compiles but does not ↵Dmitry Jemerov
run yet)
2015-05-29apply code cleanup; fix couple of deprecations manuallyDmitry Jemerov
2015-05-27allow to explicitly specify the type of root for every input pathDmitry Jemerov
2015-03-17default objects -> companion objectsDmitry Jemerov
2015-03-11add test to verify that dokka recognizes secondary constructorsDmitry Jemerov
2015-03-11fix warnings about initializersDmitry Jemerov
2015-03-10class object -> default objectDmitry Jemerov
2015-03-10support HTML entitiesDmitry Jemerov
2015-03-09remove unused Markdown to HTML conversion codeDmitry Jemerov
2015-03-06generate documentation for default object extension propertiesDmitry Jemerov
2015-03-03support links with custom labelsDmitry Jemerov
2015-03-03support ordered listsDmitry Jemerov
2015-03-02don't include members in documentation if they have @suppress tagDmitry Jemerov
2015-03-02for functions that can be called as operators, show operator being implementedDmitry Jemerov
2015-03-02fix some warningsDmitry Jemerov
2015-03-02represent nullability in doc model instead of appending ? to type nameDmitry Jemerov
2015-02-27don't lose space after first word in the content of javadoc tagsDmitry Jemerov
2015-02-27process inline doc tags in values of block tagsDmitry Jemerov
2015-02-27handle @code and @literal tags in javadocDmitry Jemerov
2015-02-27use JSoup to convert HTML markup in javadoc to content treeDmitry Jemerov
2015-02-26stop generating separate pages for property accessorsDmitry Jemerov
2015-02-26variance modifiers for type projections are separate modifier nodes, not ↵Dmitry Jemerov
part of the type name
2015-02-26variance modifiers for type parameters are separate modifier nodes, not part ↵Dmitry Jemerov
of the type name
2015-02-25working test for cross-language links in documentation (Kotlin class extends ↵Dmitry Jemerov
Java class)
2015-02-24understand @deprecated tag in javadocDmitry Jemerov
2015-02-20override links for propertiesDmitry Jemerov
2015-02-20process @see tags in javadocDmitry Jemerov
2015-02-20process @link and @linkplain tags in javadocDmitry Jemerov
2015-02-20inheritor links for Java classesDmitry Jemerov
2015-02-20links to supertypes in JavaDmitry Jemerov
2015-02-20allow a LocationService to take a qualified name directly, not just a ↵Dmitry Jemerov
DocumentationNode
2015-02-20support in-page anchors in locationsDmitry Jemerov
2015-02-19refactor extension setup; encapsulate extension in LocationServiceDmitry Jemerov
2015-02-19remove dependency of Location on a File; use more meaningful locations in testsDmitry Jemerov
2015-02-17updated according to language change: class object -> default objectDmitry Jemerov
2015-02-16nicer representation for enum valuesDmitry Jemerov
2015-02-16represent java.lang.Deprecated annotation as deprecationDmitry Jemerov
2015-02-16represent java.lang.Object as 'Any'Dmitry Jemerov
2015-02-16represent Java annotations in dokkaDmitry Jemerov
2015-02-16represent non-final classes and methods as openDmitry Jemerov
2015-02-16represent static methods as class object functionsDmitry Jemerov
2015-02-16represent fields as Kotlin propertiesDmitry Jemerov
2015-02-16represent type arguments as nodes of type Type, not TypeParameterDmitry Jemerov
2015-02-16represent array types as type with type parameterDmitry Jemerov
2015-02-16handle vararg typesDmitry Jemerov
2015-02-16don't lose tag value where it's actually part of the descriptionDmitry Jemerov