aboutsummaryrefslogtreecommitdiff
path: root/src/Kotlin/ContentBuilder.kt
AgeCommit message (Collapse)Author
2015-02-26syntax highlight code examplesDmitry Jemerov
2015-02-26stop generating separate pages for property accessorsDmitry Jemerov
2015-02-26in a qualified name, when we've reached a class, resolve lower-level members ↵Dmitry Jemerov
in the member scope of the class, not in its outer scope (otherwise we sometimes show a wrong function in @sample instead of showing that it's unresolved)
2015-02-20resolve content links to declaration descriptors immediately during markdown ↵Dmitry Jemerov
to content tree conversion; remove separate phase for resolving links in content
2015-02-13buildContent/buildContentTo don't need to be extension functions of ↵Dmitry Jemerov
DocumentationBuilder
2015-02-12process bracket tokens in markdownDmitry Jemerov
2015-02-10distinguish ContentBlock (a ContentNode that has children) from leaf nodesDmitry Jemerov
2015-02-10fix handling of triple backticksDmitry Jemerov
2015-02-09fix handling of @sample links after kdoc PSI changesDmitry Jemerov
2015-02-06handle parenthesis tokens in markdownDmitry Jemerov
2015-02-06handle code spans in markdownDmitry Jemerov
2015-02-06use getResolutionScope() from plugin; use simpler way to resolve descriptor ↵Dmitry Jemerov
in scope; rename @code tag to @sample
2015-01-30code reviewDmitry Jemerov
2015-01-30load sections from KDoc PSI, not through Markdown extensionsDmitry Jemerov
2015-01-13fix compilation (new kotlin package)Dmitry Jemerov
2015-01-13Process directives, implement "code" directive.Ilya Ryzhenkov
2015-01-12Update to the latest Kotlin compiler APIAlexander Udalov
2014-12-30add test for html escaping; fix special characters eaten from outputDmitry Jemerov
2014-12-22Document some types in Dokka and fix to make them work.Ilya Ryzhenkov
2014-12-16Process short links.Ilya Ryzhenkov
2014-12-15Migrate to non-PsiBuilder fully-featured markdown parser.Ilya Ryzhenkov
2014-10-13Remove BindingContext and migrate to ResolveSession, discover symbols for ↵Ilya Ryzhenkov
{code ...} directive.
2014-10-13Fixing formats and started work on inline function body.Ilya Ryzhenkov
2014-10-13Parse and format inline code, fix strong & emph formatting.Ilya Ryzhenkov
2014-10-03Unify link resolution for short and full forms, remove ContentNameLink.Ilya Ryzhenkov
2014-10-03Resolve links in docs.Ilya Ryzhenkov
2014-09-29Extract content model, make doc model independent from descriptors, parse ↵Ilya Ryzhenkov
doccomments with custom parser, some tests failing due to hanging new lines.