Created
December 28, 2022 23:22
-
-
Save anupambhatnagar/fed5499bfa2e498ccd5afe2b5fa6ba34 to your computer and use it in GitHub Desktop.
Enable LaTeX using mathjax in markdown files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="{{ page.lang | default: site.lang | default: "en" }}"> | |
{%- include head.html -%} | |
{%- include mathjax.html -%} | |
<body> | |
{%- include header.html -%} | |
<main class="page-content" aria-label="Content"> | |
<div class="wrapper"> | |
{{ content }} | |
</div> | |
</main> | |
{%- include footer.html -%} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment