131 lines
2.8 KiB
C++
131 lines
2.8 KiB
C++
/*
|
|
* This project is licensed under the MIT license. For more information see the
|
|
* LICENSE file.
|
|
*/
|
|
#pragma once
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <regex>
|
|
|
|
#include "blockparser.h"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
namespace maddy {
|
|
// -----------------------------------------------------------------------------
|
|
|
|
/**
|
|
* CodeBlockParser
|
|
*
|
|
* From Markdown: 3 times surrounded code (without space in the beginning)
|
|
*
|
|
* ```
|
|
* ```
|
|
* some code
|
|
* ```
|
|
* ```
|
|
*
|
|
* To HTML:
|
|
*
|
|
* ```
|
|
* <pre><code>
|
|
* some code
|
|
* </code></pre>
|
|
* ```
|
|
*
|
|
* @class
|
|
*/
|
|
class CodeBlockParser : public BlockParser
|
|
{
|
|
public:
|
|
/**
|
|
* ctor
|
|
*
|
|
* @method
|
|
* @param {std::function<void(std::string&)>} aParseLineCallback
|
|
* @param {std::function<std::shared_ptr<BlockParser>(const std::string& line)>} aGetBlockParserForLineCallback
|
|
*/
|
|
CodeBlockParser( std::function<void(std::string&)> aParseLineCallback,
|
|
std::function<std::shared_ptr<BlockParser>(const std::string& line)> aGetBlockParserForLineCallback
|
|
)
|
|
: BlockParser( aParseLineCallback, aGetBlockParserForLineCallback ),
|
|
isStarted( false ),
|
|
isFinished( false )
|
|
{}
|
|
|
|
/**
|
|
* IsStartingLine
|
|
*
|
|
* If the line starts with three code signs, then it is a code block.
|
|
*
|
|
* ```
|
|
* ```
|
|
* ```
|
|
*
|
|
* @method
|
|
* @param {const std::string&} line
|
|
* @return {bool}
|
|
*/
|
|
static bool IsStartingLine( const std::string& line )
|
|
{
|
|
static std::regex re( "^(?:`){3}$" );
|
|
|
|
return std::regex_match( line, re );
|
|
}
|
|
|
|
/**
|
|
* IsFinished
|
|
*
|
|
* @method
|
|
* @return {bool}
|
|
*/
|
|
bool IsFinished() const override
|
|
{
|
|
return this->isFinished;
|
|
}
|
|
|
|
protected:
|
|
bool isInlineBlockAllowed() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool isLineParserAllowed() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void parseBlock( std::string& line ) override
|
|
{
|
|
if( line == "```" )
|
|
{
|
|
if( !this->isStarted )
|
|
{
|
|
line = "<pre><code>\n";
|
|
this->isStarted = true;
|
|
this->isFinished = false;
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
line = "</code></pre>";
|
|
this->isFinished = true;
|
|
this->isStarted = false;
|
|
return;
|
|
}
|
|
}
|
|
|
|
line += "\n";
|
|
}
|
|
|
|
private:
|
|
bool isStarted;
|
|
bool isFinished;
|
|
}; // class CodeBlockParser
|
|
|
|
// -----------------------------------------------------------------------------
|
|
} // namespace maddy
|