@@ -28,30 +28,32 @@ and make it executable.
2828
2929* Search by name: ** ugrep** [ ** -w** ] _ regex_
3030
31- Look up a character name where _ regex_ is a regular expression. If you don't
32- know [ regular expressions] ( https://docs.python.org/3/howto/regex.html ) ,
33- don't worry. Just use plain strings and you'll rarely be wrong.
31+ Look up a character name where _regex_ is a regular
32+ expression. If you don't know [regular
33+ expressions](https://docs.python.org/3/howto/regex.html),
34+ don't worry. Just use plain strings and you'll rarely be
35+ wrong.
3436
35- ugrep runic
37+ ugrep runic
3638
37- If you find ugrep returning too many hits because the phrase you used
38- is found in other terms, e.g., "thema" found in "mathematical" , use
39- the ** -w** option to limit the search to complete words.
39+ If you find ugrep returning too many hits because the phrase you used
40+ is found in other terms, e.g., _thema_ found in _mathematical_ , use
41+ the **-w** option to limit the search to complete words.
4042
4143* Search by number: ** ugrep** _ codepoint_ ** [ ..** _ codepoint_ ]
4244
43- Look up a character (or a range of them) using Unicode code points in
44- hexadecimal. For example,
45+ Look up a character (or a range of them) using Unicode code points in
46+ hexadecimal. For example,
4547
46- ugrep 23b0..f
48+ ugrep 23b0..f
4749
4850* Search by character: ** ugrep** [ ** -c** ] _ character string_
4951
50- Look up each character in a string. Note that if the string is a
51- single character, e.g., ` ugrep X ` , then ** -c** is implied and need not
52- be specified.
52+ Look up each character in a string. Note that if the string is a
53+ single character, e.g., `ugrep X`, then **-c** is implied and need not
54+ be specified.
5355
54- ugrep -c "(゚∀゚)"
56+ ugrep -c "(゚∀゚)"
5557
5658### Examples:
5759
@@ -170,9 +172,9 @@ how many heart emojis Unicode has. 😜)
170172 $ ugrep 0..10FFFF | less # ugrep ".?" is equivalent.
171173 ⋮ [ ... over 30,000 glyphs elided for brevity ... ]
172174
173- Sometimes it's useful (or fun) to page through the Unicode
174- table and see what characters are defined in a region. (Tip:
175- search for a code point in ` less ` by pressing ` /U\+A60F ` ).
175+ Sometimes it's useful (or fun) to page through the Unicode
176+ table and see what characters are defined in a region. (Tip:
177+ search for a code point in `less` by pressing `/U\+A60F`).
176178
177179### Fun things to try:
178180
0 commit comments