## cmark_version()


Return the version string of the vendored cmark-gfm library.


Usage

``` python
cmark_version()
```


Reports the version of the bundled cmark-gfm C library that multimark was compiled against. This is useful for debugging or confirming which release of the underlying parser is in use.


## Returns


`str`  
A version string in the format `"X.Y.Z.gfm.N"` (e.g., `"0.29.0.gfm.13"`).


## Examples


``` python
from multimark import cmark_version

cmark_version()
```


    '0.29.0.gfm.13'
