Text::FrontMatter::YAML

提供: dsk's note
2015年5月2日 (土) 08:13時点におけるDsk (トーク | 投稿記録)による版

移動: 案内検索
#!/usr/bin/perl
 
use File::Slurp;
use Text::FrontMatter::YAML;
 
# READING
my $text_with_frontmatter = read_file("item.md");
my $tfm = Text::FrontMatter::YAML->new(
    document_string => $text_with_frontmatter
    );
 
my $metadata = $tfm->frontmatter_hashref;
 
print qq(This is $metadata->{title}:\n);