(FEAT): Added support for inline code blocks. #23

Merged
shultzp1 merged 4 commits from feature/inline-code-nodes into main 2025-10-21 07:45:52 -07:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit f0ab2d9006 - Show all commits

View File

@ -14,3 +14,5 @@ this is too far`
*this is **words*** *this is **words***
## **Hello world** ## **Hello world**
### hello world

View File

@ -18,7 +18,6 @@
/// try to avoid using raw pointers, and only use references when needed. /// try to avoid using raw pointers, and only use references when needed.
/// Reference: https://www.youtube.com/watch?v=AmjoK55h68Y&t=166s /// Reference: https://www.youtube.com/watch?v=AmjoK55h68Y&t=166s
// NOTE ABC
class Node { class Node {
protected: protected:
/** /**

View File

@ -288,7 +288,6 @@ void Parser::Consume(size_t count) { this->position += count; };
bool Parser::IsEOF() { return this->position >= this->content.length(); }; bool Parser::IsEOF() { return this->position >= this->content.length(); };
void Parser::ConsumeWhiteSpace() { void Parser::ConsumeWhiteSpace() {
// TODO: This can be optimized using an accumulator and then consuming
char c = Peek(); char c = Peek();
while (c == ' ' || c == '\t' || c == '\n') { while (c == ' ' || c == '\t' || c == '\n') {
Consume(); Consume();