21 lines
258 B
Plaintext
21 lines
258 B
Plaintext
---
|
|
subtitle: "申请书"
|
|
---
|
|
|
|
```{r}
|
|
#| include: false
|
|
|
|
require(drwateR)
|
|
require(rmdify)
|
|
rmdify::rmd_init()
|
|
```
|
|
|
|
```{r}
|
|
#| output: asis
|
|
dir(".", pattern = "[_-]") |>
|
|
purrr::map(~paste0("## [", .x, "](", .x, "/index.qmd)\n\n")) |>
|
|
unlist() |>
|
|
cat()
|
|
|
|
```
|