diff --git a/pages/common/ansible.md b/pages/common/ansible.md index 437f0148aa..d38ec6408c 100644 --- a/pages/common/ansible.md +++ b/pages/common/ansible.md @@ -17,12 +17,12 @@ - Execute a command on a group of hosts by invoking command module with arguments: -`ansible {{group}} -m command -a '{{my command}}'` +`ansible {{group}} -m command -a '{{my_command}}'` - Execute a command with administrative privileges: -`ansible {{group}} --become --ask-become-pass -m command -a '{{my command}}'` +`ansible {{group}} --become --ask-become-pass -m command -a '{{my_command}}'` - Execute a command using a custom inventory file: -`ansible {{group}} -i {{inventory_file}} -m command -a '{{my command}}'` +`ansible {{group}} -i {{inventory_file}} -m command -a '{{my_command}}'` diff --git a/pages/common/arp.md b/pages/common/arp.md index d32c565f31..7c6a70eac3 100644 --- a/pages/common/arp.md +++ b/pages/common/arp.md @@ -16,4 +16,4 @@ - Create an entry: -`arp -s {{address}} {{mac address}}` +`arp -s {{address}} {{mac_address}}` diff --git a/pages/common/bosh.md b/pages/common/bosh.md index 7423e645aa..07b0c9c0ee 100644 --- a/pages/common/bosh.md +++ b/pages/common/bosh.md @@ -4,7 +4,7 @@ - Create local alias for director: -`bosh alias-env {{environment-name}} -e {{ip address or url}} --ca-cert {{ca_certificate}}` +`bosh alias-env {{environment_name}} -e {{ip_address|url}} --ca-cert {{ca_certificate}}` - List environments: @@ -24,11 +24,11 @@ - Ssh into virtual machine: -`bosh -e {{environment}} ssh {{virtual machine}} -d {{deployment}}` +`bosh -e {{environment}} ssh {{virtual_machine}} -d {{deployment}}` - Upload stemcell: -`bosh -e {{environment}} upload-stemcell {{stemcell file or url}}` +`bosh -e {{environment}} upload-stemcell {{stemcell_file|url}}` - Show current cloud config: diff --git a/pages/common/composer.md b/pages/common/composer.md index 4d2d930a77..9edf9a87da 100644 --- a/pages/common/composer.md +++ b/pages/common/composer.md @@ -4,7 +4,7 @@ - Add a package as a dependency for this project, adding it to `composer.json`: -`composer require {{user/package-name}}` +`composer require {{user/package_name}}` - Install all the dependencies in this project's `composer.json`: @@ -12,7 +12,7 @@ - Uninstall a package from this project, removing it as a dependency from `composer.json`: -`composer remove {{user/package-name}}` +`composer remove {{user/package_name}}` - Update all the dependencies in this project's `composer.json`: diff --git a/pages/common/cordova.md b/pages/common/cordova.md index 14f70f6985..eee38d2585 100644 --- a/pages/common/cordova.md +++ b/pages/common/cordova.md @@ -4,7 +4,7 @@ - Create a cordova project: -`cordova create {{path}} {{package.name}} {{project.name}}` +`cordova create {{path}} {{package_name}} {{project_name}}` - Display the current workspace status: diff --git a/pages/common/cppcheck.md b/pages/common/cppcheck.md index 880ab582f5..b3f66e9053 100644 --- a/pages/common/cppcheck.md +++ b/pages/common/cppcheck.md @@ -17,7 +17,7 @@ - List available tests, filtered by a given search pattern: -`cppcheck --errorlist | grep "{{search pattern}}"` +`cppcheck --errorlist | grep "{{search_pattern}}"` - Check a given file, ignoring specific tests: diff --git a/pages/common/passwd.md b/pages/common/passwd.md index 9e1c6c651d..1e980b8a8c 100644 --- a/pages/common/passwd.md +++ b/pages/common/passwd.md @@ -4,11 +4,11 @@ - Change the password of the current user: -`passwd {{new password}}` +`passwd {{new_password}}` - Change the password of the specified user: -`passwd {{username}} {{new password}}` +`passwd {{username}} {{new_password}}` - Get the current status of the user: diff --git a/pages/common/vault.md b/pages/common/vault.md index fa927e6895..7202bfc66f 100644 --- a/pages/common/vault.md +++ b/pages/common/vault.md @@ -12,7 +12,7 @@ - Authenticate the CLI client against the Vault server, using an authentication token: -`vault auth {{authentication-token}}` +`vault auth {{authentication_token}}` - Store a new secret in the vault, using the generic back-end called "secret": diff --git a/pages/linux/flatpak.md b/pages/linux/flatpak.md index af77ed5d79..0be4361887 100644 --- a/pages/linux/flatpak.md +++ b/pages/linux/flatpak.md @@ -20,7 +20,7 @@ - Add a remote source: -`flatpak remote-add --if-not-exists {{remote-name}} {{remote-url}}` +`flatpak remote-add --if-not-exists {{remote_name}} {{remote_url}}` - List all configured remote sources: diff --git a/pages/linux/strace.md b/pages/linux/strace.md index 2630fdcc25..d17744224c 100644 --- a/pages/linux/strace.md +++ b/pages/linux/strace.md @@ -8,7 +8,7 @@ - Trace a process and filter output by system call: -`strace -p {{pid}} -e {{system call name}}` +`strace -p {{pid}} -e {{system_call_name}}` - Count time, calls, and errors for each system call and report a summary on program exit: diff --git a/pages/linux/xsetwacom.md b/pages/linux/xsetwacom.md index 863559d5e8..9af3f6fb1a 100644 --- a/pages/linux/xsetwacom.md +++ b/pages/linux/xsetwacom.md @@ -8,16 +8,16 @@ - Set Wacom area to specific screen. Get name of the screen with `xrandr`: -`xsetwacom set "{{device name}}" MapToOutput {{screen}}` +`xsetwacom set "{{device_name}}" MapToOutput {{screen}}` - Set mode to relative (like a mouse) or absolute (like a pen) mode: -`xsetwacom set "{{device name}}" Mode "{{Relative|Absolute}}"` +`xsetwacom set "{{device_name}}" Mode "{{Relative|Absolute}}"` - Rotate the input (useful for tablet-PC when rotating screen) by 0|90|180|270 degrees from "natural" rotation: -`xsetwacom set "{{device name}}" Rotate {{none|half|cw|ccw}}` +`xsetwacom set "{{device_name}}" Rotate {{none|half|cw|ccw}}` - Set button to only work when the tip of the pen is touching the tablet: -`xsetwacom set "{{device name}}" TabletPCButton "on"` +`xsetwacom set "{{device_name}}" TabletPCButton "on"`