(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

@ -13,4 +13,6 @@ this is too far`
*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.
/// Reference: https://www.youtube.com/watch?v=AmjoK55h68Y&t=166s
// NOTE ABC
class Node {
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(); };
void Parser::ConsumeWhiteSpace() {
// TODO: This can be optimized using an accumulator and then consuming
char c = Peek();
while (c == ' ' || c == '\t' || c == '\n') {
Consume();