Try โ€‚โ€‰HackMD

CodiMD 2.3.0 - Isoetes taiwanensis

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

Isoetes taiwanensis is a species of plant in the family Isoetaceae. It is endemic to Taiwan, and the only species of quillwort there. As other quillworts, it is relatively small, with erect leaves 7โ€“24 cm (2.8โ€“9.4 in) long. It grows submersed in shallow ponds for most of the year. IUCN considers it critically endangered because of habitat loss.
- Wikipedia Isoetes taiwanensis

Highlights

In this release, we focus on polishing existing features, fixing bugs and patching security issues.

We continue to expand the APIs. CodiMD now supports "Update note's content" and "delete note" RESTful APIs. Thanks for the great works from @JamesCamel

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

We also fix several XSS security issues, including mermaid, vega and image lightbox. We appreciate the security report from @msrkp, @Alemmi, and @nename0
.

This is the last release before the end of this year.
Merry Christmas to everyone! Let's look forward and see you in the next year.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

Graphviz enhancements

Specify render engine through "brace options"

You can now specify Graphviz render engine with the syntax {engine="ENGINE_TYPE"}. In the following gif example, we switch the engine from none (default engine is dot) to neato then to circo.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

```graphviz {engine="circo"}
digraph hierarchy {
        nodesep=1.0 // increases the separation between nodes

        node [color=Red,fontname=Courier,shape=box] //All nodes will this shape and colour
        edge [color=Blue, style=dashed] //All the lines look like this

        Headteacher->{Deputy1 Deputy2 BusinessManager}
        Deputy1->{Teacher1 Teacher2}
        BusinessManager->ITManager
        {rank=same;ITManager Teacher1 Teacher2}  // Put them on the same level
}
```

Basic DOT language syntax highlight support in the editor

CodiMD 2.3.0 now supports DOT language syntax highlight. You can find more details in the CodeMirror repository.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

Enhancements

Fixes

Thank you

Thank you guys for making CodiMD awesome โค๏ธ