aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/markdown
AgeCommit message (Collapse)Author
2023-11-10Restructure the project to utilize included builds (#3174)Ignat Beresnev
* Refactor and simplify artifact publishing * Update Gradle to 8.4 * Refactor and simplify convention plugins and build scripts Fixes #3132 --------- Co-authored-by: Adam <897017+aSemy@users.noreply.github.com> Co-authored-by: Oleg Yukhnevich <whyoleg@gmail.com>
2023-10-31Update org.jetbrains.markdown from 0.3.1 to 0.5.2 (#3231)Ignat Beresnev
2023-10-24[K2] Enable Java tests for symbols (#3203)Vadim Mishenev
2023-08-31Update copyright (#3149)Ignat Beresnev
* Add the default copyright profile and enable IDEA project settings * Add the license notice file
2023-08-30Migrate to JUnit 5 and unify used test API (#3138)Ignat Beresnev
2023-08-28 Support Dokka K2 analysis (#3094)Vadim Mishenev
Dokka has its own documentable model to represent analyzed code. The analysis is performed by a compiler frontend. In K1 the compiler frontend has descriptors that use the underlying Binding Context (global shared stateful structure). Dokka just maps descriptors to Documentable by DefaultDescriptorToDocumentableTranslator. K2 compiler has FIR tree, which means “Frontend Intermediate Representation”, instead of Binding Context. But we do not use FIR in Dokka directly, since it is too low-level for analysis. The Kotlin compiler provides high-level Analysis API for this case. The API is used by KSP too. Analysis API represent elements of FIR (declarations, parameters and so on) as Symbols. For more details see KtSymbolByFirBuilder, KtSymbol. For Dokka symbol is the replacement of descriptor in K2. Also, to set up the environment of project analysis in K1 we use idea dependencies (or copy-past from there). In K2 for these aims, there is a Standalone mode for Analysis API.
2023-07-05Decompose Kotlin/Java analysis (#3034)Ignat Beresnev
* Extract analysis into separate modules
2022-09-26Trim four spaces inside indented code block (#2661)Vadim Mishenev
* Trim four spaces inside indented code block * Fix test
2022-08-30Fix missing space between Markdown elements (#2640)Vadim Mishenev
2022-04-29Enable warnings as errors and fix all warnings (#2451)Ignat Beresnev
* Enable warnings as errors and fix all warnings * Enable skip-metadata-version-check compiler setting
2022-04-11Fix using `@` symbol inside code block (#2418)Vadim Mishenev
2021-04-14Handle html in kdoc (#1805)Marcin Aman
2021-03-01Add explicit exceptions in markdown and allow for empty link destinations ↵Marcin Aman
(#1757)
2021-03-01Bump markdown to 0.2.0 and fix negation in links being interpreted as img ↵Marcin Aman
(#1754) * Bump markdown library to 0.2.0 * Render shorthand images as link with text
2021-02-05Fix links to method parameters from documentation (#1713)Kamil Doległo
2020-11-27Fixing tests after moving SingleGeneration to baseBłażej Kardyś
2020-10-07Introduce top-level DocTagAndrzej Ratajczak
2020-09-14Fix parsing strikethroughAndrzej Ratajczak
2020-09-14Refactor DocTags and add markdown testsAndrzej Ratajczak
2020-09-07NullPointerException on images #1424Marcin Aman
2020-08-31Let `DRI.packageName` always be a real package name for root packages ("")sebastian.sellmair
2020-08-28Fix losing tokens while parsing markdown italic textAndrzej Ratajczak
2020-08-20Fix LinkProvider to link properly all nested generic parametersAndrzej Ratajczak
2020-08-17Implement SourceSetMergingPageTransformersebastian.sellmair
2020-07-15Fix presenting inline code in KDocAndrzej Ratajczak
2020-07-09Add rendering signatures testsAndrzej Ratajczak
2020-07-06Enforce workspace unique SourceSetIDsebastian.sellmair
2020-06-23First version of javadoc output generationAndrzej Ratajczak
2020-06-15Rework dokka configuration and Gradle pluginKamil Doległo
2020-06-09Improve CSS, pages navigation tree and create anchors on pageMarcin Aman
2020-05-28Return types links in inner classes with generic parentsMarcin Aman
2020-05-19Missing generics on class. Add generics to annotation #834Marcin Aman
2020-03-25Fix link parsing for links with fq namesKamil Doległo
2020-03-17Add expect with generationSzymon Świstun
2020-03-16Rename Documentables to avoid name conflictsKamil Doległo
2020-02-28Test api moved to sensible packagePaweł Marks
2020-02-27Small adjustments to the new modelPaweł Marks
2020-02-18Moves all core tests to base pluginPaweł Marks