-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.qmd
143 lines (103 loc) · 2.76 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
---
page-title: "Geocities for Quarto"
title: "Quartocities: Geocities for Quarto"
---
:::{.holder}
:::{.news}
To get started clone schochastics/quartocities and go wild
:::
:::
## Typography
::: {.grid}
::: {.g-col-4 .well}
# h1. heading
## h2. heading
### h3. heading
#### h4. heading
##### h5. heading
###### h6. heading
:::
::: {.g-col-4}
### Example body text
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula ut id elit.
:::
::: {.g-col-4}
### Example Addresses
![](img/spinningearth.gif) **Gary's Shoes**
9764 Jeopardy Lane, Chicago, Illinois
[![](img/emailme.gif) first.last@yahoo.com](mailto:#)
:::
:::
::: {.grid}
::: {.g-col-6}
>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
[Someone famous in Source Title]{.block-title}
:::
::: {.g-col-6}
:::{.block-right}
>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
[Someone famous in Source Title]{.block-title}
:::
:::
:::
{{< hammer3 >}}
## Buttons
{{< btn primary Primary >}}
{{< btn secondary Secondary >}}
{{< btn success Success >}}
{{< btn info Info >}}
{{< btn warning Warning >}}
{{< btn danger Danger >}}
{{< btn light Light >}}
{{< btn dark Dark >}}
{{< btn primary Home link=. >}}
{{< hammer3 >}}
## ![](img/hot.gif) Table
![](img/construction/construction6.gif)
| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
| Paragraph | Text | And more |
## ![](img/new.gif)Miscellaneous
### Panel-tabset
:::{.panel-tabset}
### Tab A
Content for `Tab A`
### Tab B
Content for `Tab B`
### Tab C
Content for `Tab C`
:::
### Callout Boxes
:::{.callout-note}
Note that there are five types of callouts, including:
`note`, `warning`, `important`, `tip`, and `caution`.
:::
:::{.callout-warning}
Callouts provide a simple way to attract attention, for example, to this warning.
:::
:::{.callout-important}
Danger, callouts will really improve your writing.
:::
:::{.callout-tip}
## Tip With Caption
This is an example of a callout with a caption.
:::
:::{.callout-caution collapse="true"}
## Expand To Learn About Collapse
This is an example of a 'folded' caution callout that can be expanded by the user. You can use `collapse="true"` to collapse it by default or `collapse="false"` to make a collapsible callout that is expanded by default.
:::
### Fun with text
[blink blink]{.blink_me}
[Rainbowtext is fun]{.multicolortext}
## Code
```{r test}
#| eval: true
#| echo: true
#| message: false
library(igraph)
g <- sample_gnp(n =100, p = 0.1)
deg <- degree(g)
deg
```