1 2 3 4 | 5 6 7 1̇ | test {:.music}
More info about mermaid syntax
🚀 🐼 weee 😕 asdf 😒
Hello! {: .text-red-200 } Font sdds {: .text-blue-200 } Beep
And this is a test of how default article rendering works hereAnd another paragraph hopefully
# Testing things this is too bigHere is something more reasonable.
- heloo
- hulloo
- beep beep
more change more rendder
Change this again to force a re-render
yes
With mermaid declaration:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
without:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Yeh
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.1.0
skinparam defaultTextAlignment center
!include ICONURL/common.puml
!include ICONURL/font-awesome-5/gitlab.puml
!include ICONURL/font-awesome-5/java.puml
!include ICONURL/font-awesome-5/rocket.puml
!include ICONURL/font-awesome/newspaper_o.puml
FA_NEWSPAPER_O(news,good news!,node) #White {
FA5_GITLAB(gitlab,GitLab.com,node) #White
FA5_JAVA(java,PlantUML,node) #White
FA5_ROCKET(rocket,Integrated,node) #White
}
gitlab ..> java
java ..> rocket
- What If I have a bulleted list?
- What if I have a bulleted list with a a really really really really really really really really really really really really really really really really really really really really really really really really really really really really really really long element?
- What if I have a bulleted list with a a really really really really really really really really really really really really really really really really really really really really really really really really really really really really really really long element that is also a hyperlink?
For now, this is a copy of the template repo for the Just The Docs jekyll theme, with some tweaked colors, and the template editted to call MathJax for latex Rendering.
You can use the editor on GitHub to maintain and preview the content for your website in Markdown files.
Whenever you commit to this repository, GitHub Pages will run Jekyll to rebuild the pages in your site, from the content in your Markdown files.
Github's parser makes \(\)
and \[\]
finicky:
Double dollar notation for display mode $$x^2_i \times \beta $$
:
Slash bracket display mode \[x^2_i + u_u \times \beta \]
:
[x^2_i + u_u \times \beta ]
Slash bracket display mode \\[x^2_i + u_u \times \beta \\]
:
\[x^2_i + u_u \times \beta \]
Inline latext how you doin? \(x^3\)
(x^2) ; \\(x^4\\)
\(x^4\) ; $x^5$
You need to have a blank line before the equation in $$$$ or github's jekyll stuff will think you actually want an inline equation. ... Bad design choice imo.
Inline test 1
Inline test 2 \(x^2_i + u_u \times \beta\)
Inline test 3
Inline test 4 $$ \left{ x^2_i + u_u \times \beta \right}$$
Inline test 5
Inline test 6
Inline test 7
Prepend the following to the beginning of the _includes/head.html file from the jekyll theme.
<!--renders latex-->
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async></script>
<!--The following is used to allow the math to wordwrap.-->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
CommonHTML: { linebreaks: { automatic: true } },
"HTML-CSS": { linebreaks: { automatic: true } },
SVG: { linebreaks: { automatic: true } },
TeX: {extensions: ["enclose.js"]},
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
</script>
Using the default Minima theme, you can find the file to copy over and modify here
Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
Syntax highlighted code block
# Header 1
## Header 2
### Header 3
- Bulleted
- List
1. Numbered
2. List
**Bold** and _Italic_ and `Code` text
[Link](url) and ![Image](src)
For more details see GitHub Flavored Markdown.
Your Pages site will use the layout and styles from the Jekyll theme you have selected in your repository settings. The name of this theme is saved in the Jekyll _config.yml
configuration file.
Having trouble with Pages? Check out our documentation or contact support and we’ll help you sort it out.