-
Notifications
You must be signed in to change notification settings - Fork 334
Basic Formatting
Most of this is just the formatting built into Markdown. Lookup help for Markdown for more thorough documentation.
_italic text_
**bold text**
~~strike-through text~~
<br>
<br>
Text with extra blank lines above and below
<br>
<br>
<!-- a comment in HTML -->
{% comment %}
A comment in Liquid
{% endcomment %}
- list item 1
- list item 2
- list item 3
[Link text](https://some-website.org/)
[Meet our team!](team)
Unless noted otherwise, all links in .yaml
files, .md
files, and components can be absolute links (e.g. https://google.com/
) or relative links to items within your repo (e.g. images/group-photo.jpg
).
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
{:.center}
The easiest way to center something. Works for most elements. Always try this first, then fall back to centerer component if it doesn't work.
# Top level heading
## Secondary heading
### Very specific heading
#### Even more specific heading
---
With left-aligned, centered, and right-aligned columns.
| TABLE | Game 1 | Game 2 | Game 3 | Total |
| :---- | :----: | :----: | :----: | ----: |
| Anna | 144 | 123 | 218 | 485 |
| Bill | 90 | 175 | 120 | 385 |
| Cara | 102 | 214 | 233 | 549 |
> It was the best of times it was the worst of times.
> It was the age of wisdom, it was the age of foolishness.
> It was the spring of hope, it was the winter of despair.
With syntax highlighting.
```javascript
// a comment
const popup = document.querySelector("#popup");
popup.style.width = "100%";
popup.innerText = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.";
```
This sentence has `inline code`, useful for making references to variables, packages, versions, etc. within a sentence.
This template has Font Awesome Free built-in, a large library of beautiful, clean, consistent, professionally-designed icons. Find the icon you want, and paste its HTML code right into your Markdown:
<i class="fas fa-flask"></i>
<i class="fas fa-microscope"></i>
<i class="fas fa-bacteria"></i>
<i class="fas fa-virus"></i>
Use the same style of icon across your site to maintain a consistent look. See the styling section of their docs to see some of the easy ways you can modify the look of the icons. Several of the Components use these icons.
✨ The documentation for v1.0.0
and above are now at https://greene-lab.gitbook.io/lab-website-template-docs.