diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-12-26 20:27:30 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-12-26 21:40:27 +0100 |
commit | 143db50760758ca340cc88f41f44955d4d16e1e7 (patch) | |
tree | dd8ecf41d4fa37275110a08ced9259b500b41dd2 /tools-reference | |
parent | More conventional syntax of definition lists. (diff) | |
download | devmanual-143db50760758ca340cc88f41f44955d4d16e1e7.tar.gz devmanual-143db50760758ca340cc88f41f44955d4d16e1e7.tar.bz2 devmanual-143db50760758ca340cc88f41f44955d4d16e1e7.zip |
Remove all p elements below dd.
Where necessary, use multiple dd elements instead.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'tools-reference')
-rw-r--r-- | tools-reference/tr/text.xml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/tools-reference/tr/text.xml b/tools-reference/tr/text.xml index e7002e1..8a1a236 100644 --- a/tools-reference/tr/text.xml +++ b/tools-reference/tr/text.xml @@ -26,27 +26,21 @@ and only writes to standard output. Therefore, you will have to use Deleting characters </dt> <dd> - <p> - To delete all occurrences of certain characters, use <c>tr -d asdf</c>. - </p> + To delete all occurrences of certain characters, use <c>tr -d asdf</c>. </dd> <dt> Deleting repeated characters </dt> <dd> - <p> - To replace repeated characters with a single character ('squeeze'), use - <c>tr -s asdf</c>. - </p> + To replace repeated characters with a single character ('squeeze'), use + <c>tr -s asdf</c>. </dd> <dt> Transliterating characters </dt> <dd> - <p> - To replace all 'a' characters with '1', all 'b' with '2' and all 'c' with - '3', use <c>tr abc 123</c>. - </p> + To replace all 'a' characters with '1', all 'b' with '2' and all 'c' with + '3', use <c>tr abc 123</c>. </dd> </dl> |