mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Add initial command skeleton
* Update dependencies * Add twig formatters * Update version command and add version to the package.json * Update package.json with other project details
This commit is contained in:
22
src/Resume/Command/HtmlCommand.php
Normal file
22
src/Resume/Command/HtmlCommand.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
namespace Resume\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class HtmlCommand extends Command
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this
|
||||
->setName('html')
|
||||
->setDescription('Generate an HTML resume from a markdown file');
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/* End of file HtmlCommand.php */
|
||||
Reference in New Issue
Block a user