aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-28 03:43:11 -0400
committerCraig Jennings <c@cjennings.net>2026-06-28 03:43:11 -0400
commit276b66894e71a842b8cc1e9143feadabf75874ea (patch)
treeb7c2d8235c35b22126ce8f6e59828bd9506c2a44
parent0305c495df91220dae780bb79c7293db2c5150c4 (diff)
downloademacs-wttrin-276b66894e71a842b8cc1e9143feadabf75874ea.tar.gz
emacs-wttrin-276b66894e71a842b8cc1e9143feadabf75874ea.zip
docs: fix verbatim markdown bold in the README geolocation section
Five labels used Markdown **bold**, which renders literally in the Org README. Switched them to Org *bold*.
-rw-r--r--README.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.org b/README.org
index 8701468..dea324a 100644
--- a/README.org
+++ b/README.org
@@ -269,11 +269,11 @@ If a refresh fails, the emoji dims to gray and the tooltip tells you what went w
*** Weather for Your Current Location
If you don't want to type your city by hand, wttrin can detect it for you.
-**From the picker (weather here, right now):** run =M-x wttrin= and pick the first entry, "Current location (detect)". wttrin looks up your city via IP geolocation and shows its weather. If the guess is wrong (VPN, mobile hotspot), the detected city is right there in the buffer header, so just open the picker again and type the correct city.
+*From the picker (weather here, right now):* run =M-x wttrin= and pick the first entry, "Current location (detect)". wttrin looks up your city via IP geolocation and shows its weather. If the guess is wrong (VPN, mobile hotspot), the detected city is right there in the buffer header, so just open the picker again and type the correct city.
-**Make the detected city your default:** in that weather buffer, press =d=. The detected city becomes =wttrin-favorite-location= (what the mode-line tracks). With =savehist-mode= on, the favorite persists across sessions automatically, since wttrin registers it with savehist. No =customize-save-variable= step is needed.
+*Make the detected city your default:* in that weather buffer, press =d=. The detected city becomes =wttrin-favorite-location= (what the mode-line tracks). With =savehist-mode= on, the favorite persists across sessions automatically, since wttrin registers it with savehist. No =customize-save-variable= step is needed.
-**Always use my current location:** run =M-x wttrin-use-current-location=, or set the variable directly:
+*Always use my current location:* run =M-x wttrin-use-current-location=, or set the variable directly:
#+begin_src emacs-lisp
(setq wttrin-favorite-location t)
@@ -291,7 +291,7 @@ The default lookup provider is =ipapi.co=. Two alternatives ship with the packag
*Note:* IP-based geolocation can be wrong when you are behind a VPN or using a mobile hotspot. If you prefer, set =wttrin-favorite-location= directly to any city string that wttr.in understands.
-**Higher accuracy via an external command:** IP geolocation only finds your network's exit point, which on a VPN or cellular hotspot can be the wrong city or state. For a more accurate fix, point =wttrin-geolocation-command= at a command that returns your coordinates as JSON:
+*Higher accuracy via an external command:* IP geolocation only finds your network's exit point, which on a VPN or cellular hotspot can be the wrong city or state. For a more accurate fix, point =wttrin-geolocation-command= at a command that returns your coordinates as JSON:
#+begin_src emacs-lisp
(setq wttrin-geolocation-command "your-location-script --json")
@@ -313,7 +313,7 @@ Two ready-to-adapt example commands live in [[file:examples/geolocation/][exampl
The older =M-x wttrin-set-location-from-geolocation= command still works but is deprecated in favor of the picker entry above.
-**Turning geolocation off:** geolocation is on by default. To opt out — no "Current location" entry in the picker, no detection requests — set:
+*Turning geolocation off:* geolocation is on by default. To opt out — no "Current location" entry in the picker, no detection requests — set:
#+begin_src emacs-lisp
(setq wttrin-geolocation-enabled nil)