This commit is contained in:
parent
3b611e995b
commit
80211e0540
3 changed files with 92 additions and 66 deletions
|
|
@ -24,7 +24,7 @@ Now, you and I well know in the real world there are often constraints and exter
|
||||||
|
|
||||||
My diagram-fu is weakened when working on my laptop’s track-pad, but the diagram below still serves to illustrate a few key points.
|
My diagram-fu is weakened when working on my laptop’s track-pad, but the diagram below still serves to illustrate a few key points.
|
||||||
|
|
||||||
![[graph.jpg]]
|
![[./graph.jpg]]
|
||||||
|
|
||||||
First, components of the game (Single Player, Tutorial, etc) differ in the amount of work and are so represented by different width blocks. As each HL is complete quality goes up. The VS sits on top of the HL and therefore is elevated in quality by it. In this diagram two vertical slices are created for two different portions of the game; single player and multiplayer. You can see that the slices themselves are of different widths. This represents the amount of the component the VS is meant to demonstrate. For example the single player VS may only be showing off one portion of one campaign mission, whereas the multiplayer VS might be demonstrating nearly fully functional gameplay on a variety of maps. Also note that each slice was started during a different HL iteration. Had the VS for single player began on the 3rd HL iteration it would have achieved a higher quality level.
|
First, components of the game (Single Player, Tutorial, etc) differ in the amount of work and are so represented by different width blocks. As each HL is complete quality goes up. The VS sits on top of the HL and therefore is elevated in quality by it. In this diagram two vertical slices are created for two different portions of the game; single player and multiplayer. You can see that the slices themselves are of different widths. This represents the amount of the component the VS is meant to demonstrate. For example the single player VS may only be showing off one portion of one campaign mission, whereas the multiplayer VS might be demonstrating nearly fully functional gameplay on a variety of maps. Also note that each slice was started during a different HL iteration. Had the VS for single player began on the 3rd HL iteration it would have achieved a higher quality level.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,67 +1,13 @@
|
||||||
# Sample Markdown Test
|
<!-- BEGIN ARISE ------------------------------
|
||||||
|
Title:: "Index: Test"
|
||||||
|
|
||||||
Welcome to the **Markdown style test** for your library-themed site.
|
Author:: "Jose Falanga"
|
||||||
This file includes headings, text formatting, lists, links, images, code, blockquotes, tables, and horizontal rules.
|
Description:: "Test"
|
||||||
|
Language:: "en"
|
||||||
|
Thumbnail:: ""
|
||||||
|
Published Date:: ""
|
||||||
|
Modified Date:: ""
|
||||||
|
|
||||||
---
|
toc:: "true"
|
||||||
|
content_header:: "false"
|
||||||
## Text Styles
|
---- END ARISE \\ DO NOT MODIFY THIS LINE ---->
|
||||||
|
|
||||||
**Bold text**
|
|
||||||
*Italic text*
|
|
||||||
***Bold + Italic***
|
|
||||||
~~Strikethrough~~
|
|
||||||
`Inline code`
|
|
||||||
> Blockquote text for testing. The border and color should reflect your library style.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Links
|
|
||||||
|
|
||||||
[Internal link](/posts)
|
|
||||||
[External link](https://spectrasecu.re)
|
|
||||||
|
|
||||||
Hover over links to see color transition.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Lists
|
|
||||||
|
|
||||||
### Unordered List
|
|
||||||
- Item 1
|
|
||||||
- Item 2
|
|
||||||
- Nested item
|
|
||||||
- Item 3
|
|
||||||
|
|
||||||
### Ordered List
|
|
||||||
1. First
|
|
||||||
2. Second
|
|
||||||
3. Third
|
|
||||||
1. Nested first
|
|
||||||
2. Nested second
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Images
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Check image border radius, spacing, and responsiveness.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Code Blocks
|
|
||||||
|
|
||||||
### Inline code
|
|
||||||
|
|
||||||
Use `` `inline code` `` inside text.
|
|
||||||
|
|
||||||
### Fenced code block
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Bash example
|
|
||||||
echo "Hello, world!"
|
|
||||||
for file in *.txt; do
|
|
||||||
echo "Processing $file"
|
|
||||||
done
|
|
||||||
```
|
|
||||||
|
|
|
||||||
80
arise-source/test/styles/index.md
Normal file
80
arise-source/test/styles/index.md
Normal file
|
|
@ -0,0 +1,80 @@
|
||||||
|
<!-- BEGIN ARISE ------------------------------
|
||||||
|
Title:: "Style Test"
|
||||||
|
|
||||||
|
Author:: "Jose Falanga"
|
||||||
|
Description:: "Style Test"
|
||||||
|
Language:: "en"
|
||||||
|
Thumbnail:: "arise-icon.png"
|
||||||
|
Published Date:: "2009-04-16"
|
||||||
|
Modified Date:: "2025-10-13"
|
||||||
|
|
||||||
|
content_header:: "false"
|
||||||
|
rss_hide:: "true"
|
||||||
|
---- END ARISE \\ DO NOT MODIFY THIS LINE ---->
|
||||||
|
# Sample Markdown Test
|
||||||
|
|
||||||
|
Welcome to the **Markdown style test** for your library-themed site.
|
||||||
|
This file includes headings, text formatting, lists, links, images, code, blockquotes, tables, and horizontal rules.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Text Styles
|
||||||
|
|
||||||
|
**Bold text**
|
||||||
|
*Italic text*
|
||||||
|
***Bold + Italic***
|
||||||
|
~~Strikethrough~~
|
||||||
|
`Inline code`
|
||||||
|
> Blockquote text for testing. The border and color should reflect your library style.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Links
|
||||||
|
|
||||||
|
[Internal link](/posts)
|
||||||
|
[External link](https://spectrasecu.re)
|
||||||
|
|
||||||
|
Hover over links to see color transition.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Lists
|
||||||
|
|
||||||
|
### Unordered List
|
||||||
|
- Item 1
|
||||||
|
- Item 2
|
||||||
|
- Nested item
|
||||||
|
- Item 3
|
||||||
|
|
||||||
|
### Ordered List
|
||||||
|
1. First
|
||||||
|
2. Second
|
||||||
|
3. Third
|
||||||
|
1. Nested first
|
||||||
|
2. Nested second
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Images
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Check image border radius, spacing, and responsiveness.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Code Blocks
|
||||||
|
|
||||||
|
### Inline code
|
||||||
|
|
||||||
|
Use `` `inline code` `` inside text.
|
||||||
|
|
||||||
|
### Fenced code block
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Bash example
|
||||||
|
echo "Hello, world!"
|
||||||
|
for file in *.txt; do
|
||||||
|
echo "Processing $file"
|
||||||
|
done
|
||||||
|
```
|
||||||
Loading…
Add table
Add a link
Reference in a new issue