一般的なmarkdownと同様、<h1>
-<h6>
タグに変換される。
Sudden looked elinor off gay estate nor silent. Son read such next see the rest two. Was use extent old entire sussex. Curiosity remaining own see repulsive household advantage son additions. Supposing exquisite daughters eagerness why repulsive for. Praise turned it lovers be warmly by. Little do it eldest former be if.
私は多年どうしても同じ存在めとして事の時の当てるなう。よし次第が納得めはよほど大きな失敗たたかもがさてならたがも経過いうたましょから、全くにも思わたたないたら。本領をいうですのももっとも前に何だかだませう。いったい嘉納さんを標榜書生ますます推察をすみた一口いわゆる主義何か活動にというお仕事たましででしょたって、いわゆる十月はそれかがた学校よりしで、岡田さんの訳が人の私がやはりお入会と致さけれども私肴がご講演としようについに不反対がつけですでて、ちっとも正しく意味をいううてならまいので掘りでで。つまりそうしてご鶴嘴を待っ気もたった公平ときまったて、そのらとはありありからという時分より云っばいますう。
Backquotesはquartoの特性というよりは、hugoのテーマ次第なところが大きい。
Be yourself;everyone else is already taken. ― Oscar Wilde
Two things are infinite: the universe and human stupidity; and I’m not sure about the universe.
Albert Einstein1
Col1 | Col2 |
---|---|
Tom | 24 |
Clara | 34 |
Italics | Bold | Code |
---|---|---|
italics | bold | code |
quartoの実行結果がネイティブに動くのは素晴らしいなあ。
codeタグのcssは改良の余地がありそう。
library(dplyr)
mtcars |>
group_by(cyl) |>
summarise(mean(mpg))
Hugoのショートコードはquartoのレンダリング時に若干崩壊するようだ。
{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
{{< /highlight >}}
{{< highlight html >}}
<!doctype html>
Test
{{< /highlight >}}
library(dplyr)
次のパッケージを付け加えます: 'dplyr'
以下のオブジェクトは 'package:stats' からマスクされています:
filter, lag
以下のオブジェクトは 'package:base' からマスクされています:
intersect, setdiff, setequal, union
mtcars |>
group_by(cyl) |>
summarise(mean(mpg))
# A tibble: 3 × 2
cyl `mean(mpg)`
<dbl> <dbl>
1 4 26.7
2 6 19.7
3 8 15.1
pacman::p_load(ggplot2)
mtcars |>
ggplot(aes(x = mpg, y = hp, col = cyl)) +
geom_point()
import seaborn.objects as so
from palmerpenguins import load_penguins
penguins = load_penguins()
(
so.Plot(penguins, x="bill_length_mm", y="bill_depth_mm")
.add(so.Dot())
.show()
)
[dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
rev = "11f52b8c72fc3a568e8bb4a4cd1f3eb025ac2e13"
- features = ["dynamic"]
+ features = ["jpeg", "dynamic"]
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
H<sub>2</sub>O
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
GIF is a bitmap image format.
H2O
Xn + Yn = Zn
Press CTRL+ALT+Delete to end the session.
Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
Shortcodeにdouble-quotationが含まれていると、rendering時にsmart-quoteに変換されてしまう仕様らしい。 これはシンタックスエラーの引き金となってhugoがレンダリングに失敗してしまうので、現状主導でmarkdownファイルを修正してやる必要がある。Issueあげようかと思ったら既に修正に取り組んでくれているみたいだった。今後に期待。
{{< quote author=“A famous person” source=“The book they wrote” url=”https://en.wikipedia.org/wiki/Book” >}}
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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{< /quote >}}
{{< youtube yQU_GBvgGQU >}}