Skip to content

Releases: rnorth/mkdocs-codeinclude-plugin

0.2.1

01 Mar 19:56
ea54d28
Compare
Choose a tag to compare

What's Changed

  • Proper multiple-tab code blocks (#26) @fundthmcalculus
  • Test nightly so that breaking changes in dependencies are detected (#28) @rnorth
  • Update test to match changes in dependencies (#27) @rnorth

0.2.0

08 Nov 17:14
87a3992
Compare
Choose a tag to compare

What's Changed

0.1.0

18 Oct 12:29
0665765
Compare
Choose a tag to compare

What's changed

A number of improvements from @dmitry-timofeev:

Indent the ellipsis between non-adjacent lines (#15)

Use the last line indent so that the result can be
un-indented by the caller. It prevents results like this:

    /* block 1 */
...
    /* block 2 */

turning them into

    /* block 1 */
    ...
    /* block 2 */

which will be dedented by the caller.

Allow selectors on next line (#10)

Allows targeting expressions to be on the next line:

<!--codeinclude-->
<!-- On the same line -->
[Title](long/long/Path) targeting_expr1

<!-- On the next line -->
[Title2](long/long/Path)
targeting_expr2
<!--/codeinclude-->

Resolves #9

Fix inside_block inclusion with multiple curly brackets on the same line (#14)

Add support for any language (#5)

Auto-detect the source language and the alias to use using the Pygments API.

Allow empty titles (#6)

Allow empty title for code snippets. It may be useful for short code fragments.

0.0.1

18 Jun 18:07
1eff89e
Compare
Choose a tag to compare

Initial version published to PyPI

0.0.1-testpypi

18 Jun 18:03
d1f84fb
Compare
Choose a tag to compare
0.0.1-testpypi Pre-release
Pre-release
Add homepage URL