map_to_md 1.0.0 copy "map_to_md: ^1.0.0" to clipboard
map_to_md: ^1.0.0 copied to clipboard

A dart package that converts a list of Map to a markdown formatted table.

MapToMarkdown #

A dart package that converts a list of Map to a markdown formatted table. Inspired by Tomark python module. Note: Each Map in the list must have the same number of elements.

Usage #

import 'package:map_to_md/map_to_md.dart';

void main() {
  var md = MapToMarkdown();
  final data = [
    {
      "No": 1,
      "Date": "May",
      "Value": false,
    },
    {
      "No": 2,
      "Date": "June",
      "Value": true,
    },
  ];
  var res = md.table(data);
  print(res);
}
copied to clipboard

Table output #

No Date Value
1 May false
2 June true

Raw output #

| No | Date | Value |
|-----|-----|-----|
| 1 | May | false |
| 2 | June | true |
copied to clipboard
1
likes
160
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A dart package that converts a list of Map to a markdown formatted table.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

More

Packages that depend on map_to_md