IT/Software/Mediawiki/Formatting Example: Difference between revisions
Jump to navigation
Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
Player5501 (talk | contribs) |
Player5501 (talk | contribs) No edit summary |
||
Line 18: | Line 18: | ||
=== This is a section with combined lists === | === This is a section with combined lists === | ||
---- | |||
# First thing | # First thing | ||
#* Unordered sub thing | #* Unordered sub thing | ||
Line 23: | Line 24: | ||
# Second Thing | # Second Thing | ||
## Ordered sub thing | ## Ordered sub thing | ||
==== Code Formating ==== | |||
---- | |||
<code> | |||
currentBrightness=$(cat "/sys/class/backlight/intel_backlight/brightness") | |||
newBrightness=$(($currentBrightness + 50))</code> |
Revision as of 15:27, 27 December 2019
This is a header
This is a sentence under the header.
This is a section with a numbered list
- Thing 1
- Another thing
- sub things
- More things
- New things
This is a section with a unorderd list
- a thing
- a sub thing
- another sub thing
- next thing
- filler text yay
This is a section with combined lists
- First thing
- Unordered sub thing
- Another unordered sub thing
- Second Thing
- Ordered sub thing
Code Formating
currentBrightness=$(cat "/sys/class/backlight/intel_backlight/brightness")
newBrightness=$(($currentBrightness + 50))