<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/dokka.git/plugins/gfm/api, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/'/>
<entry>
<title>Restructure the project to utilize included builds (#3174)</title>
<updated>2023-11-10T10:46:54+00:00</updated>
<author>
<name>Ignat Beresnev</name>
<email>ignat.beresnev@jetbrains.com</email>
</author>
<published>2023-11-10T10:46:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=8e5c63d035ef44a269b8c43430f43f5c8eebfb63'/>
<id>8e5c63d035ef44a269b8c43430f43f5c8eebfb63</id>
<content type='text'>
* Refactor and simplify artifact publishing
* Update Gradle to 8.4
* Refactor and simplify convention plugins and build scripts

Fixes #3132

---------

Co-authored-by: Adam &lt;897017+aSemy@users.noreply.github.com&gt;
Co-authored-by: Oleg Yukhnevich &lt;whyoleg@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Refactor and simplify artifact publishing
* Update Gradle to 8.4
* Refactor and simplify convention plugins and build scripts

Fixes #3132

---------

Co-authored-by: Adam &lt;897017+aSemy@users.noreply.github.com&gt;
Co-authored-by: Oleg Yukhnevich &lt;whyoleg@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Enable explicit API mode (#3139)</title>
<updated>2023-08-31T18:16:01+00:00</updated>
<author>
<name>Ignat Beresnev</name>
<email>ignat.beresnev@jetbrains.com</email>
</author>
<published>2023-08-31T18:16:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33'/>
<id>02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support code blocks and inline code for GFM format (#2485)</title>
<updated>2022-05-04T16:33:21+00:00</updated>
<author>
<name>Don Cross</name>
<email>cosinekitty@users.noreply.github.com</email>
</author>
<published>2022-05-04T16:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=3fb60bc74a4ed4e4c795f2f14fa112321a3c94cc'/>
<id>3fb60bc74a4ed4e4c795f2f14fa112321a3c94cc</id>
<content type='text'>
Fixes #2477.

Inline code, text that is nested within a pair of backquotes,
is now converted into GitHub Flavored Markdown (gfm) without
stripping out the backquotes. For example:

    The parameter `sum` must be a non-negative real number.

Code blocks, which are any number of lines of literal text
between triple-backquotes, and an optional programming language
name, are now preserved. If absent, the programming language
is assumed to be "kotlin". This follows the behavior of the
html renderer. For example:

    Here is an example of calling the function:
    ```kotlin
    val sum = addThemUp(left, right)
    ```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #2477.

Inline code, text that is nested within a pair of backquotes,
is now converted into GitHub Flavored Markdown (gfm) without
stripping out the backquotes. For example:

    The parameter `sum` must be a non-negative real number.

Code blocks, which are any number of lines of literal text
between triple-backquotes, and an optional programming language
name, are now preserved. If absent, the programming language
is assumed to be "kotlin". This follows the behavior of the
html renderer. For example:

    Here is an example of calling the function:
    ```kotlin
    val sum = addThemUp(left, right)
    ```</pre>
</div>
</content>
</entry>
<entry>
<title>Minor: rename `buildNewLine` (#1987)</title>
<updated>2021-07-19T12:56:23+00:00</updated>
<author>
<name>Mike Sinkovsky</name>
<email>msink@users.noreply.github.com</email>
</author>
<published>2021-07-19T12:56:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=01ce00036a403c1d6bba3cb1b4c228f2df3f8b6c'/>
<id>01ce00036a403c1d6bba3cb1b4c228f2df3f8b6c</id>
<content type='text'>
* minor: rename `DefaultRenderer.buildNewLine` to `buildLineBreak`
to better describe what it actually does.

* minor: rename `CommonmarRenderer.appendNewLine` to `buildNewLine`
for consistency.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* minor: rename `DefaultRenderer.buildNewLine` to `buildLineBreak`
to better describe what it actually does.

* minor: rename `CommonmarRenderer.appendNewLine` to `buildNewLine`
for consistency.</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup paragraphs and tables in GFM renderer (#1946)</title>
<updated>2021-06-25T20:29:17+00:00</updated>
<author>
<name>Mike Sinkovsky</name>
<email>msink@users.noreply.github.com</email>
</author>
<published>2021-06-25T20:29:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=46b33710df5418fd3b668ea0753a8bd72f63c406'/>
<id>46b33710df5418fd3b668ea0753a8bd72f63c406</id>
<content type='text'>
* GFM renderer: cleanup paragraphs

* GFM renderer: cleanup tables

* GFM renderer: add tests for wrong header in table

Table with extra cell in row is really generated by `all-modules-page` plugin

* Remove commented-out lines

* Add BriefCommentPreprocessor which inserts a line break between a signature and a brief comment

Fixed a bug with `mapTransform` function which replaces table headers with their contents

Co-authored-by: Kamil Doległo &lt;kamil.doleglo@interia.pl&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* GFM renderer: cleanup paragraphs

* GFM renderer: cleanup tables

* GFM renderer: add tests for wrong header in table

Table with extra cell in row is really generated by `all-modules-page` plugin

* Remove commented-out lines

* Add BriefCommentPreprocessor which inserts a line break between a signature and a brief comment

Fixed a bug with `mapTransform` function which replaces table headers with their contents

Co-authored-by: Kamil Doległo &lt;kamil.doleglo@interia.pl&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce binary compatibility plugin (#1774)</title>
<updated>2021-04-14T19:51:16+00:00</updated>
<author>
<name>Marcin Aman</name>
<email>marcin.aman@gmail.com</email>
</author>
<published>2021-04-14T19:51:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/dokka.git/commit/?id=7bfab097f35f86bafbc2feff23e6658ad17da2ae'/>
<id>7bfab097f35f86bafbc2feff23e6658ad17da2ae</id>
<content type='text'>
* Introduce binary compatibility plugin

* Update diffs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Introduce binary compatibility plugin

* Update diffs</pre>
</div>
</content>
</entry>
</feed>
