Built-in documentation text width in Lighthouse book (#5394)
* Adjust width * Commit changes * Trigger Build
This commit is contained in:
parent
0a6e4a11d7
commit
a0e64d0652
@ -490,4 +490,5 @@ OPTIONS:
|
||||
Specify a weak subjectivity checkpoint in `block_root:epoch` format to verify the node's sync against. The
|
||||
block root should be 0x-prefixed. Note that this flag is for verification only, to perform a checkpoint sync
|
||||
from a recent state use --checkpoint-sync-url.
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -104,4 +104,5 @@ SUBCOMMANDS:
|
||||
blocks and attestations). [aliases: v, vc, validator]
|
||||
validator_manager Utilities for managing a Lighthouse validator client via the HTTP API. [aliases: vm,
|
||||
validator-manager, validator_manager]
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -222,4 +222,5 @@ OPTIONS:
|
||||
|
||||
--web3-signer-max-idle-connections <COUNT>
|
||||
Maximum number of idle connections to maintain per web3signer host. Default is unlimited.
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -94,4 +94,5 @@ SUBCOMMANDS:
|
||||
move Uploads validators to a validator client using the HTTP API. The validators are defined in a JSON file
|
||||
which can be generated using the "create-validators" command. This command only supports validators
|
||||
signing via a keystore on the local file system (i.e., not Web3Signer validators).
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -134,4 +134,5 @@ OPTIONS:
|
||||
-t, --testnet-dir <DIR>
|
||||
Path to directory containing eth2_testnet specs. Defaults to a hard-coded Lighthouse testnet. Only effective
|
||||
if there is no existing database.
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -98,4 +98,5 @@ OPTIONS:
|
||||
--vc-url <HTTP_ADDRESS>
|
||||
A HTTP(S) address of a validator client using the keymanager-API. If this value is not supplied then a 'dry
|
||||
run' will be conducted where no changes are made to the validator client. [default: http://localhost:5062]
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -115,4 +115,5 @@ OPTIONS:
|
||||
if there is no existing database.
|
||||
--validators <STRING>
|
||||
The validators to be moved. Either a list of 0x-prefixed validator pubkeys or the keyword "all".
|
||||
```
|
||||
```
|
||||
<style> .content main {max-width:88%;} </style>
|
||||
|
@ -17,6 +17,9 @@ write_to_file() {
|
||||
|
||||
# We need to add the header and the backticks to create the code block.
|
||||
printf "# %s\n\n\`\`\`\n%s\n\`\`\`" "$program" "$cmd" > "$file"
|
||||
|
||||
# Adjust the width of the help text and append to the end of file
|
||||
sed -i -e '$a\'$'\n''<style> .content main {max-width:88%;} </style>' "$file"
|
||||
}
|
||||
|
||||
CMD=./target/release/lighthouse
|
||||
|
Loading…
Reference in New Issue
Block a user