/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/layouts/section/commands.html
23 строки
499 B
Nick Craig-Wood
docs: markdownify the strings in the commands index
27 май 2020, 19:31
27 май 2020, 19:31
256d17e
Код
Авторство
О чём код?
{{ define "main" }} <h1>Rclone Commands</h1> <p> This is an index of all commands in rclone. Run <code>rclone command --help</code> to see the help for that command. </p> <table> <thead> <tr> <th>Command</th> <th>Description</th> </tr> </thead> <tbody> {{ range .Data.Pages }} <tr> <td><a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a></td> <td>{{ .Description | markdownify }}</td> </tr> {{ end }} </tbody> </table> {{ end }}