Actions Status

NAME

Text::Textile2MarcdownStandalone - Standalone converter from Textile markup to Markdown

VERSION

version 0.01

SYNOPSIS

use Text::Textile2MarcdownStandalone;

# Convert a Textile file to a Markdown file
my $converter = Text::Textile2MarcdownStandalone->new(
  input_file  => 'input.textile',
  output_file => 'output.md',
);
$converter->convert;

# Get the Markdown output as a string
my $markdown = Text::Textile2MarcdownStandalone->new(
  input_file => 'input.textile'
)->convert;

DESCRIPTION

Text::Textile2MarcdownStandalone provides a simple, standalone tool to convert Textile-formatted text into Markdown. It supports:

METHODS

AUTHOR

Akihito Takeda takeda.akihito@gmail.com

COPYRIGHT AND LICENSE

Copyright (C) 2023 Akihito Takeda

This software is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

POD ERRORS

Hey! The above document had some coding errors, which are explained below: