Create
Dictionary::Create
is a module that allows you to create in different formats
Synopsis
use Dictionary::Create;
my $article = Dictionary::Create::DSL::Article.new;
$article.set-title("foo");
my $translation = $article.space( [
$article.translation("bar"),
$article.example("foo and bar is foobar")
] );
$article.append_new($article.m-tag(1, $translation));
say $article.give(); # get the article content