Page 1
No “front matter”
jekyll callouts
A primary callout.
A secondary callout.
go
n.storage.ApplySnapshot(rd.Snapshot)
n.storage.SetHardState(rd.HardState)
n.storage.Append(rd.Entries)
render some Go code
Some inline code
and identifiers
.
package main
import "fmt"
func main() {
fmt.Println("hello world!")
}
link back to parent:
- index.md - https://zvold.github.io/test-gh-pages/
- index.html - same
- / - nope (https://zvold.github.io)
- . - yes, root: https://zvold.github.io/test-gh-pages/
- .. - nope (https://zvold.github.io/)
link to another page:
- page2.md - https://zvold.github.io/test-gh-pages/lol
- /page2.md - same
- /page2.html - nope (https://zvold.github.io/page2.html)
- /lol - nope (https://zvold.github.io/lol)
- /lol/ - nope (https://zvold.github.io/lol/)
- lol - https://zvold.github.io/test-gh-pages/lol
- lol/ - nope (https://zvold.github.io/test-gh-pages/lol/)
- /page2
- /page2/
- page2 - nope because it’s /lol (https://zvold.github.io/test-gh-pages/page2)
- page2/