}
-// Convert MMD text to specified format, with specified extensions, and language
-// Returned char * must be freed
+/// Convert MMD text to specified format, with specified extensions, and language
+/// Returned char * must be freed
char * mmd_convert_string(const char * source, unsigned long extensions, short format, short language) {
char * result;
}
-// Convert MMD text to specified format, with specified extensions, and language
-// Returned char * must be freed
+/// Convert MMD text to specified format, with specified extensions, and language
+/// Returned char * must be freed
char * mmd_convert_d_string(DString * source, unsigned long extensions, short format, short language) {
char * result;
d_string_free(output, true);
}
-// Return string containing engine version.
+/// Return string containing engine version.
char * mmd_version(void) {
char * result;
result = strdup(MULTIMARKDOWN_VERSION);