chore: change some test posts

This commit is contained in:
jeffreytse 2020-07-12 16:30:26 +08:00
parent 745982c557
commit 16922b8ac6
6 changed files with 85 additions and 31 deletions

View file

@ -7,12 +7,6 @@ tags: [plantuml]
## My First PlantUML
`` ini
aaa = 123
````
``
### PlantUML Block-1
@startuml
Bob -> Alice : hello
@ -20,7 +14,7 @@ Bob -> Alice : hello
### PlantUML Block-2
``` plantuml
``` plantuml!
Bob -> Alice : hello world
```

View file

@ -16,7 +16,6 @@ tags: [table]
* Table header not required
* Grouped table header rows or data rows
### Rowspan and Colspan
^^ in a cell indicates it should be merged with the cell above.
This feature is contributed by [pmccloghrylaing](https://github.com/pmccloghrylaing).
@ -61,6 +60,18 @@ Table header can be eliminated.
|♖ |♘ |♗ |♕ |♔ | | |♖ |
```markdown
|: Fruits \|\| Food :|||
|:-------- |:-------- |:------------ |
| Apple |: Apple :| Apple \
| Banana | Banana | Banana \
| Orange | Orange | Orange |
|: Rowspan is 5 :||: How's it? :|
|^^ A. Peach ||^^ 1. Fine |
|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ |
|^^ C. Banana || It's OK! ![example image][my-image] |
```
### Text Alignment
Table cell can be set alignment separately.
@ -75,17 +86,26 @@ Table cell can be set alignment separately.
| Apple | Banana | Orange |
| Apple | Banana | Orange |
|: \:Fruits :|| |: Food :||
|:-------- |:------ |:-------- |:-------- |:------ |
| Apple | Banana | Orange |: Strawberry :|
| Apple | Banana | Orange | Peach :| |
| Apple & Banana || ^^ | Peach :||
|: \:Fruits :|| |: Food :||
| Apple | Banana | Orange |: Strawberry :|
|: Fruits \|\| Food :|||
|:-------- |:-------- |:------------ |
| Apple |: Apple :| Apple \
| Banana | Banana | Banana \
| Orange | Orange | Orange |
|: Rowspan is 4 :|| How's it? |
|^^ A. Peach || 1. Fine :|
|^^ B. Orange ||^^ 2. Bad |
|^^ C. Banana || It's OK! |
|: Rowspan is 5 :||: How's it? :|
|^^ A. Peach ||^^ 1. Fine |
|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ |
|^^ C. Banana || It's OK! ![example image][my-image] |
[my-image]: http://www.unexpected-vortices.com/sw/rippledoc/example-image.jpg "An exemplary image"

View file

@ -11,8 +11,6 @@ Some of you know that we occasionally play for weddings. As you can imagine, we
![](//www.youtube.com/watch?v=Ptk_1Dc2iPY)
<br>
<br>
## GUCCI HALLUCINATION / THE LINE ANIMATION / GUCCI
BACKGROUND /
@ -25,8 +23,6 @@ Our aim was to ground and accentuate the outlandish scenarios with ambient sound
![](https://vimeo.com/263856289)
<br>
<br>
## FINNEAS Demos How He Builds Songs For Billie Eilish
Grammy Award-winning musician and producer FINNEAS sits down with Pitchfork and closely examines his creative process while working on some of the biggest hit songs of the past couple years. FINNEAS explores the sounds that brought upon
some of his greatest musical breakthroughs in songs such as bad guy, bury a friend, ocean eyes, when the party's over, I Lost a Friend, Used to This and much more.
@ -34,3 +30,8 @@ some of his greatest musical breakthroughs in songs such as bad guy, bury a frie
![][demo]
[demo]: https://dai.ly/x7tgcev
## This is the poster image
In modern browsers, adding a video to your page is as easy as adding an image. No longer do you need to deal with special plug-ins or require crazy markup, you can do it with a single element.
![video](//www.html5rocks.com/en/tutorials/video/basics/devstories.webm)

View file

@ -1,8 +1,10 @@
---
layout: post
title: Welcome to Jekyll!
subheading: hello world!
author: Jeffrey
categories: jekyll
banner: default
tags: jekyll theme yat
---

View file

@ -2,8 +2,7 @@
// Define defaults for each variable.
$base-font-family: 'Noto Sans Light', 'AppleSDGothicNeo-Regular', 'Malgun
Gothic', "Apple Color Emoji", Helvetica, Arial, sans-serif, Oswald, dotum, sans-serif, !default;
$base-font-family: "Noto Sans Light", AppleSDGothicNeo-Regular, "Malgun Gothic", "Apple Color Emoji", Helvetica, Arial, Oswald, sans-serif, !default;
$base-font-size: 14px !default;
$base-font-weight: 400 !default;
$small-font-size: $base-font-size * 0.875 !default;

View file

@ -321,6 +321,44 @@ html {
margin-left: 8px;
}
}
.paginator {
text-align: center;
.previous:before {
content: ' ';
border: solid #787878;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
margin-right: 8px;
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
.next:after {
content: ' ';
border: solid #787878;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
margin-left: 8px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
.previous span, .next span {
color: #b3b3b3;
}
a:hover {
color: #000;
}
.indicator {
padding: 0 15px;
}
}
}