my %o;
getopts "l:t:", \%o and @ARGV == 0
or Odin::fail "usage: new [-l LANG] [-t TITLE]";
- my %p = (title => decode(locale => $o{t}), lang => $o{l} // "plain-text",
+ my %p = (title => decode(locale => $o{t}), lang => $o{l} // "txt",
content => read_content);
my $db = Odin::open_db;
my $c = "";