docs: set unsafe HTML parsing to false and fix raw HTML insertion

This means that markdown files can't contain <thing> any more.
This commit is contained in:
Nick Craig-Wood 2020-05-22 12:22:52 +01:00
parent 06427371eb
commit 74b8cbfb84
128 changed files with 945 additions and 645 deletions

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone"
description: "Show help for rclone commands, flags and backends."
slug: rclone

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone about"
description: "Get quota information from the remote."
slug: rclone_about

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone authorize"
description: "Remote authorization."
slug: rclone_authorize

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone backend"
description: "Run a backend specific command."
slug: rclone_backend

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone cat"
description: "Concatenates any files and sends them to stdout."
slug: rclone_cat

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone check"
description: "Checks the files in the source and destination match."
slug: rclone_check

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone cleanup"
description: "Clean up the remote if possible"
slug: rclone_cleanup

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config"
description: "Enter an interactive configuration session."
slug: rclone_config
@ -33,7 +33,7 @@ See the [global flags page](/flags/) for global options not listed here.
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
* [rclone config create](/commands/rclone_config_create/) - Create a new remote with name, type and options.
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote <name>.
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote `name`.
* [rclone config disconnect](/commands/rclone_config_disconnect/) - Disconnects user from remote
* [rclone config dump](/commands/rclone_config_dump/) - Dump the config file as JSON.
* [rclone config edit](/commands/rclone_config_edit/) - Enter an interactive configuration session.

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config create"
description: "Create a new remote with name, type and options."
slug: rclone_config_create
@ -13,8 +13,8 @@ Create a new remote with name, type and options.
## Synopsis
Create a new remote of <name> with <type> and options. The options
should be passed in in pairs of <key> <value>.
Create a new remote of `name` with `type` and options. The options
should be passed in in pairs of `key` `value`.
For example to make a swift remote of name myremote using auto config
you would do:
@ -45,7 +45,7 @@ using remote authorization you would do this:
```
rclone config create <name> <type> [<key> <value>]* [flags]
rclone config create `name` `type` [`key` `value`]* [flags]
```
## Options

View file

@ -1,21 +1,21 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config delete"
description: "Delete an existing remote <name>."
description: "Delete an existing remote `name`."
slug: rclone_config_delete
url: /commands/rclone_config_delete/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/config/delete/ and as part of making a release run "make commanddocs"
---
# rclone config delete
Delete an existing remote <name>.
Delete an existing remote `name`.
## Synopsis
Delete an existing remote <name>.
Delete an existing remote `name`.
```
rclone config delete <name> [flags]
rclone config delete `name` [flags]
```
## Options

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config disconnect"
description: "Disconnects user from remote"
slug: rclone_config_disconnect

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config dump"
description: "Dump the config file as JSON."
slug: rclone_config_dump

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config edit"
description: "Enter an interactive configuration session."
slug: rclone_config_edit

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config file"
description: "Show path of configuration file in use."
slug: rclone_config_file

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config password"
description: "Update password in an existing remote."
slug: rclone_config_password
@ -14,7 +14,7 @@ Update password in an existing remote.
Update an existing remote's password. The password
should be passed in in pairs of <key> <value>.
should be passed in in pairs of `key` `value`.
For example to set password of a remote of name myremote you would do:
@ -25,7 +25,7 @@ both support obscuring passwords directly.
```
rclone config password <name> [<key> <value>]+ [flags]
rclone config password `name` [`key` `value`]+ [flags]
```
## Options

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config providers"
description: "List in JSON format all the providers and options."
slug: rclone_config_providers

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config reconnect"
description: "Re-authenticates user with remote."
slug: rclone_config_reconnect

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config show"
description: "Print (decrypted) config file, or the config for a single remote."
slug: rclone_config_show

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config update"
description: "Update options in an existing remote."
slug: rclone_config_update
@ -14,7 +14,7 @@ Update options in an existing remote.
Update an existing remote's options. The options should be passed in
in pairs of <key> <value>.
in pairs of `key` `value`.
For example to update the env_auth field of a remote of name myremote
you would do:
@ -41,7 +41,7 @@ require this add an extra parameter thus:
```
rclone config update <name> [<key> <value>]+ [flags]
rclone config update `name` [`key` `value`]+ [flags]
```
## Options

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone config userinfo"
description: "Prints info about logged in user of remote."
slug: rclone_config_userinfo

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone copy"
description: "Copy files from source to dest, skipping already copied"
slug: rclone_copy

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone copyto"
description: "Copy files from source to dest, skipping already copied"
slug: rclone_copyto

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone copyurl"
description: "Copy url content to dest."
slug: rclone_copyurl

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone cryptcheck"
description: "Cryptcheck checks the integrity of a crypted remote."
slug: rclone_cryptcheck

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone cryptdecode"
description: "Cryptdecode returns unencrypted file names."
slug: rclone_cryptdecode

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone dedupe"
description: "Interactively find duplicate files and delete/rename them."
slug: rclone_dedupe

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone delete"
description: "Remove the contents of path."
slug: rclone_delete

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone deletefile"
description: "Remove a single file from remote."
slug: rclone_deletefile

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone genautocomplete"
description: "Output completion script for a given shell."
slug: rclone_genautocomplete

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone genautocomplete bash"
description: "Output bash completion script for rclone."
slug: rclone_genautocomplete_bash

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone genautocomplete fish"
description: "Output fish completion script for rclone."
slug: rclone_genautocomplete_fish

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone genautocomplete zsh"
description: "Output zsh completion script for rclone."
slug: rclone_genautocomplete_zsh

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone gendocs"
description: "Output markdown docs for rclone to the directory supplied."
slug: rclone_gendocs

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone hashsum"
description: "Produces a hashsum file for all the objects in the path."
slug: rclone_hashsum

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone link"
description: "Generate public link to file/folder."
slug: rclone_link

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone listremotes"
description: "List all the remotes in the config file."
slug: rclone_listremotes

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone ls"
description: "List the objects in the path with size and path."
slug: rclone_ls

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone lsd"
description: "List all directories/containers/buckets in the path."
slug: rclone_lsd

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone lsf"
description: "List directories and objects in remote:path formatted for parsing"
slug: rclone_lsf

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone lsjson"
description: "List directories and objects in the path in JSON format."
slug: rclone_lsjson

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone lsl"
description: "List the objects in path with modification time, size and path."
slug: rclone_lsl

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone md5sum"
description: "Produces an md5sum file for all the objects in the path."
slug: rclone_md5sum

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone mkdir"
description: "Make the path if it doesn't already exist."
slug: rclone_mkdir

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone mount"
description: "Mount the remote as file system on a mountpoint."
slug: rclone_mount

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone move"
description: "Move files from source to dest."
slug: rclone_move

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone moveto"
description: "Move file or directory from source to dest."
slug: rclone_moveto

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone ncdu"
description: "Explore a remote with a text based user interface."
slug: rclone_ncdu
@ -17,7 +17,7 @@ This displays a text based user interface allowing the navigation of a
remote. It is most useful for answering the question - "What is using
all my disk space?".
<script src="https://asciinema.org/a/157793.js" id="asciicast-157793" async></script>
{{< asciinema 157793 >}}
To make the user interface it first scans the entire remote given and
builds an in memory representation. rclone ncdu can be used during

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone obscure"
description: "Obscure password for use in the rclone.conf"
slug: rclone_obscure

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone purge"
description: "Remove the path and all of its contents."
slug: rclone_purge

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone rc"
description: "Run a command against a running rclone."
slug: rclone_rc

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone rcat"
description: "Copies standard input to file on remote."
slug: rclone_rcat

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone rcd"
description: "Run rclone listening to remote control commands only."
slug: rclone_rcd

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone rmdir"
description: "Remove the path if empty."
slug: rclone_rmdir

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone rmdirs"
description: "Remove empty directories under the path."
slug: rclone_rmdirs

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve"
description: "Serve a remote over a protocol."
slug: rclone_serve

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve dlna"
description: "Serve remote:path over DLNA"
slug: rclone_serve_dlna

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve ftp"
description: "Serve remote:path over FTP."
slug: rclone_serve_ftp

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve http"
description: "Serve the remote over HTTP."
slug: rclone_serve_http

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve restic"
description: "Serve the remote for restic's REST API."
slug: rclone_serve_restic
@ -88,7 +88,7 @@ these **must** end with /. Eg
### Private repositories ####
The "--private-repos" flag can be used to limit users to repositories starting
with a path of "/<username>/".
with a path of `/<username>/`.
## Server options

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve sftp"
description: "Serve the remote over SFTP."
slug: rclone_serve_sftp

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone serve webdav"
description: "Serve remote:path over webdav."
slug: rclone_serve_webdav

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone settier"
description: "Changes storage class/tier of objects in remote."
slug: rclone_settier

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone sha1sum"
description: "Produces an sha1sum file for all the objects in the path."
slug: rclone_sha1sum

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone size"
description: "Prints the total size and number of objects in remote:path."
slug: rclone_size

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone sync"
description: "Make source and dest identical, modifying destination only."
slug: rclone_sync

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone touch"
description: "Create new file or change file modification time."
slug: rclone_touch

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone tree"
description: "List the contents of the remote in a tree like fashion."
slug: rclone_tree

View file

@ -1,5 +1,5 @@
---
date: 2020-05-22T09:52:00+01:00
date: 2020-05-22T15:09:46+01:00
title: "rclone version"
description: "Show the version number."
slug: rclone_version