Apparently, Github Pages uses a different markdown processor than the one used by Github. I am having trouble trying to render mathematical expressions like $O(N^2)$ on GitHub pages which work fine on Github
In my project, I only have a bunch of markdown files organized into folders without any Jekyll config files or custom Github workflows set up. I tried just creating a _config.yml file in project root with one line as markdown: GFM but that didn't work
Also, decorated highlights like the one below works on Github but not on Github Pages
> [!NOTE]
> Some insightful text
The approach you're taking of setting the Markdown processor in
_config.ymlrequires you to use Jekyll. (See docs)To add similar functionality, you will need to manually add support in your Markdown files.
For mathematical expressions, you can do so by using a tool like MathJax.
In your Markdown file:
To add support for styling of blockquotes, simply add the desired CSS rules to your Markdown files.