1. 7b91d7d don't lose space after first word in the content of javadoc tags by Dmitry Jemerov · 10 years ago
  2. 63faa14 process inline doc tags in values of block tags by Dmitry Jemerov · 10 years ago
  3. 78a8fb9 don't generate 'open' modifier for constructors by Dmitry Jemerov · 10 years ago
  4. 6af51fd fix link resolution with other variants of the javadoc PSI structure by Dmitry Jemerov · 10 years ago
  5. 8a65a7a handle @code and @literal tags in javadoc by Dmitry Jemerov · 10 years ago
  6. a9538f2 use JSoup to convert HTML markup in javadoc to content tree by Dmitry Jemerov · 10 years ago
  7. 4494fd0 allow applying different styles to different kinds of identifiers by Dmitry Jemerov · 10 years ago
  8. 4b61be3 don't generate redundant links that lead to the same page with no anchor (e.g. receiver type in extension functions) by Dmitry Jemerov · 10 years ago
  9. 11bc0b1 hide visibility modifiers in summary list of members by Dmitry Jemerov · 10 years ago
  10. f7c2f2a add another blank line after deprecation notice by Dmitry Jemerov · 10 years ago
  11. 44cef5c syntax highlight code examples by Dmitry Jemerov · 10 years ago
  12. 4f59034 separate sections for extension properties and extension functions by Dmitry Jemerov · 10 years ago
  13. 146764a stop generating separate pages for property accessors by Dmitry Jemerov · 10 years ago
  14. 1e74c64 don't generate links to builtin types in signatures by Dmitry Jemerov · 10 years ago
  15. f9b7ea8 variance modifiers for type projections are separate modifier nodes, not part of the type name by Dmitry Jemerov · 10 years ago
  16. f8704c6 variance modifiers for type parameters are separate modifier nodes, not part of the type name by Dmitry Jemerov · 10 years ago
  17. 9829559 don't show java.lang.Object in the list of Java class supertypes by Dmitry Jemerov · 10 years ago
  18. 722c9af use non-breaking spaces when generating signatures by Dmitry Jemerov · 10 years ago
  19. 6714d65 include receiver type and parameter types in the signature of a property by Dmitry Jemerov · 10 years ago
  20. 6459ec0 in a qualified name, when we've reached a class, resolve lower-level members 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) by Dmitry Jemerov · 10 years ago
  21. 86a6db8 fix formatting of overloads on kotlin website by Dmitry Jemerov · 10 years ago
  22. f90ee50 fix formatting of signatures in Kotlin web site by Dmitry Jemerov · 10 years ago
  23. 7003ad8 fix formatting of "deprecated" notice in markdown by Dmitry Jemerov · 10 years ago
  24. 51aba13 fix formatting of strikethrough on Kotlin website by Dmitry Jemerov · 10 years ago
  25. 5ae9588 fix formatting of code blocks on kotlin website by Dmitry Jemerov · 10 years ago
  26. 9849287 use correct extension in links for jekyll and kotlin-website docs by Dmitry Jemerov · 10 years ago
  27. 8ae8cb7 fix stdlib run configuration by Dmitry Jemerov · 10 years ago
  28. fc70184 working test for cross-language links in documentation (Kotlin class extends Java class) by Dmitry Jemerov · 10 years ago
  29. 184a24c resolve references through single map from signature to DocumentationNode (enables cross-language references) by Dmitry Jemerov · 10 years ago
  30. 29e48dc identify nodes by string signarture, not by descriptor object by Dmitry Jemerov · 10 years ago
  31. 6306862 use Kotlin style types in element signatures by Dmitry Jemerov · 10 years ago
  32. a60d8ba understand @deprecated tag in javadoc by Dmitry Jemerov · 10 years ago
  33. b1296e6 override links for properties by Dmitry Jemerov · 10 years ago
  34. ce4b3b6 test that we're linking type names in parameters and return values by Dmitry Jemerov · 10 years ago
  35. 649217d process @see tags in javadoc by Dmitry Jemerov · 10 years ago
  36. ff0e6be process @link and @linkplain tags in javadoc by Dmitry Jemerov · 10 years ago
  37. f26fccd inheritor links for Java classes by Dmitry Jemerov · 10 years ago
  38. fdd2d9a links to supertypes in Java by Dmitry Jemerov · 10 years ago
  39. 6620764 pending references logic moved from DocumentationBuilder to model by Dmitry Jemerov · 10 years ago
  40. bfe53b9 resolve content links to declaration descriptors immediately during markdown to content tree conversion; remove separate phase for resolving links in content by Dmitry Jemerov · 10 years ago
  41. 69c3638 more generic and simple concept of pending links by Dmitry Jemerov · 10 years ago
  42. ecadf40 allow a LocationService to take a qualified name directly, not just a DocumentationNode by Dmitry Jemerov · 10 years ago
  43. 85a3ae7 support in-page anchors in locations by Dmitry Jemerov · 10 years ago
  44. ea1f4cc refactor extension setup; encapsulate extension in LocationService by Dmitry Jemerov · 10 years ago
  45. d9bfa02 remove dependency of Location on a File; use more meaningful locations in tests by Dmitry Jemerov · 10 years ago
  46. 2822a3e updated according to language change: class object -> default object by Dmitry Jemerov · 10 years ago
  47. c28923c recompile markdown.jar with kotlin plugin 0.10.950 by Dmitry Jemerov · 10 years ago
  48. 4c6cbfa ignore SuppressWarnings annotations by Dmitry Jemerov · 10 years ago
  49. 76e0db0 API to create simple text nodes more easily by Dmitry Jemerov · 10 years ago
  50. 614f5fa nicer representation for enum values by Dmitry Jemerov · 10 years ago
  51. 4bec8fc represent java.lang.Deprecated annotation as deprecation by Dmitry Jemerov · 10 years ago
  52. 17e25ef represent java.lang.Object as 'Any' by Dmitry Jemerov · 10 years ago
  53. 107ef42 represent Java annotations in dokka by Dmitry Jemerov · 10 years ago
  54. 5c709d9 represent non-final classes and methods as open by Dmitry Jemerov · 10 years ago
  55. 3e3a4af represent static methods as class object functions by Dmitry Jemerov · 10 years ago
  56. 6d5d88b represent fields as Kotlin properties by Dmitry Jemerov · 10 years ago
  57. 15e95f1 exclude private members by Dmitry Jemerov · 10 years ago
  58. 6c93cc9 represent type arguments as nodes of type Type, not TypeParameter by Dmitry Jemerov · 10 years ago
  59. 555f9cf represent array types as type with type parameter by Dmitry Jemerov · 10 years ago
  60. 4a45896 handle vararg types by Dmitry Jemerov · 10 years ago
  61. 77effb4 don't lose tag value where it's actually part of the description by Dmitry Jemerov · 10 years ago
  62. c11ae71 convert doc tags to sections by Dmitry Jemerov · 10 years ago
  63. 902aeb1 add Java inner classes to model by Dmitry Jemerov · 10 years ago
  64. 95e3e32 distinguish Kotlin inner classes by Dmitry Jemerov · 10 years ago
  65. ce29c52 handle Java constructors nicely by Dmitry Jemerov · 10 years ago
  66. 2527b96 extract source links to non-Kotlin-specific part by Dmitry Jemerov · 10 years ago
  67. aa3f051 import Java type parameters into documentation model by Dmitry Jemerov · 10 years ago
  68. 7d0e2ec remove (accidentally?) duplicated test by Dmitry Jemerov · 10 years ago
  69. 0544db0 map array types to Kotlin by Dmitry Jemerov · 10 years ago
  70. 181418c process implements and extends list of Java classes by Dmitry Jemerov · 10 years ago
  71. acb49b4 process modifiers of Java elements by Dmitry Jemerov · 10 years ago
  72. 7697bed initial implementation of JavaDocumentationBuilder by Dmitry Jemerov · 10 years ago
  73. 4a4601d buildContent/buildContentTo don't need to be extension functions of DocumentationBuilder by Dmitry Jemerov · 10 years ago
  74. 4a018fa allow multiple builders to provide package nodes; move some kotlin-independent logic to DocumentationNode by Dmitry Jemerov · 10 years ago
  75. ba58510 delete some dead code by Dmitry Jemerov · 10 years ago
  76. f2fd617 tests use the same implementation of DocumentationModule building logic as production code by Dmitry Jemerov · 10 years ago
  77. f3bed40 process bracket tokens in markdown by Dmitry Jemerov · 10 years ago
  78. 5b8da98 add kotlin.reflect to shared run configuration by Dmitry Jemerov · 10 years ago
  79. c5e98b1 fix links to supertypes by Dmitry Jemerov · 10 years ago
  80. ebbf265 much nicer html output for overloads by Dmitry Jemerov · 10 years ago
  81. a187baa consider ContentNodeLink nodes to be equal if they point to nodes with the same name (so that links to parameters with the same name in different overloads would still allow grouping) by Dmitry Jemerov · 10 years ago
  82. 550efc2 a bit of dead code by Dmitry Jemerov · 10 years ago
  83. e1a3884 more sane handling of overloads: don't duplicate signatures, show all documentation of a group of overloads with exactly the same documentation together by Dmitry Jemerov · 10 years ago
  84. 0d0fc1f distinguish ContentBlock (a ContentNode that has children) from leaf nodes by Dmitry Jemerov · 10 years ago
  85. 9207523 fix handling of triple backticks by Dmitry Jemerov · 10 years ago
  86. f93ff9c correctly render bounds of type parameters in declarations by Dmitry Jemerov · 10 years ago
  87. 25592f5 correctly render @see links by Dmitry Jemerov · 10 years ago
  88. 0b6f2b2 make sure that file names generated from identifiers are unique on case-insensitive file systems by Dmitry Jemerov · 10 years ago
  89. e9c1e35 fix handling of @sample links after kdoc PSI changes by Dmitry Jemerov · 10 years ago
  90. 7c86b3d add path variable for Kotlin plugin by Dmitry Jemerov · 10 years ago
  91. 8036ed4 fix dokka compilation after API change by Dmitry Jemerov · 10 years ago
  92. 3fe73a9 handle parenthesis tokens in markdown by Dmitry Jemerov · 10 years ago
  93. b78e3bb handle code spans in markdown by Dmitry Jemerov · 10 years ago
  94. 0e76eed use getResolutionScope() from plugin; use simpler way to resolve descriptor in scope; rename @code tag to @sample by Dmitry Jemerov · 10 years ago
  95. 4ed5b2e use code from Kotlin plugin for resolving references in KDoc; delete some dead code by Dmitry Jemerov · 10 years ago
  96. da1b31b Merge pull request #19 from orangy/ant-task by Dmitry Jemerov · 10 years ago
  97. 1602b0f cleanup after rebase by Dmitry Jemerov · 10 years ago
  98. c12704b remove some logging which is no longer needed by Dmitry Jemerov · 10 years ago
  99. f338bc0 support source links in the Ant task by Dmitry Jemerov · 10 years ago
  100. 0783f6f Ant task for Dokka by Dmitry Jemerov · 10 years ago