yamh 0.2.0 copy "yamh: ^0.2.0" to clipboard
yamh: ^0.2.0 copied to clipboard

Yet Another Markdown to HTML converter. Dirt simple and null-safe.

example/example.dart

import 'dart:io';
import 'package:yamh/yamh.dart';

void main() async {
  await yamh_str('**This** is a *markdown* string.', null).then((String str) {
    print(str); // <p><strong>This</strong> is a <em>markdown</em> string.</p>
  });

  final file = File('../test/test.md');
  await yamh_file(file, null);
}
1
likes
120
pub points
0%
popularity

Publisher

verified publisherdoamatto.xyz

Yet Another Markdown to HTML converter. Dirt simple and null-safe.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

Dependencies

args, markdown

More

Packages that depend on yamh