diff --git a/tldr/gitk b/tldr/gitk index 0d270ef1..34b1ee0d 100644 --- a/tldr/gitk +++ b/tldr/gitk @@ -26,4 +26,4 @@ source: https://github.com/tldr-pages/tldr.git - Show at most 100 changes in all branches: -` gitk --max-count={{100}} --all` +`gitk --max-count=100 --all` diff --git a/tldr/kitex b/tldr/kitex index 51be1e82..f7a30616 100644 --- a/tldr/kitex +++ b/tldr/kitex @@ -15,7 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Generate client codes when a project is not in `$GOPATH`: -` kitex -module {{github.com/xx-org/xx-name}} {{path/to/IDL_file.thrift}}` +`kitex -module {{github.com/xx-org/xx-name}} {{path/to/IDL_file.thrift}}` - Generate client codes with protobuf IDL: diff --git a/tldr/rclone b/tldr/rclone index 7951e95e..757d7194 100644 --- a/tldr/rclone +++ b/tldr/rclone @@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git - Copy files changed within the past 24 hours to a remote from the local machine, asking the user to confirm each file: -`rclone copy --interactive --max-age 24h {{remote_name}}:{{path/to/directory}} {{path/to/local_directory}} ` +`rclone copy --interactive --max-age 24h {{remote_name}}:{{path/to/directory}} {{path/to/local_directory}}` - Mirror a specific file or directory (Note: Unlike copy, sync removes files from the remote if it does not exist locally): diff --git a/tldr/venv b/tldr/venv index f15b1932..f1c46523 100644 --- a/tldr/venv +++ b/tldr/venv @@ -10,7 +10,7 @@ source: https://github.com/tldr-pages/tldr.git - Create a Python virtual environment: -` python -m venv {{path/to/virtual_environment}}` +`python -m venv {{path/to/virtual_environment}}` - Activate the virtual environment (Linux and macOS):