A step-by-step guide for macOS: wrap a shell script in an Automator app so that double-clicking any .md file in Finder renders it as HTML and opens it in your browser, where the Obsidian Web Clipper's Reader mode can be applied with one click.
The Obsidian Web Clipper's Reader mode operates on whatever HTML is in the current browser tab — internally it runs Defuddle on the document, which extracts the article element and round-trips it through markdown. The URL validation gate in the extension's source is explicit: http://, https://, and file:/// URLs are all valid. So if you render a .md file to a minimal HTML skeleton on disk and open it as a file:// URL, Reader will work on it.
pandoc installed (brew install pandoc)chrome://extensions → Obsidian Web Clipper → Details → toggle onSpotlight (⌘ Space), type "Automator", hit Enter.
It'll prompt you with a "Choose a type for your document" sheet. Pick Application, click Choose.
The window has three columns. Left column is "Library" (categories) and search field at top. Type run shell script into the search box. The middle column will show Run Shell Script under Utilities. Drag it across to the big empty area on the right.
The dropped action becomes a panel with two dropdowns:
/bin/bash"$@" contain the file paths Finder hands over.Paste this into the text box, replacing the default cat line:
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
for MD in "$@"; do
[ -f "$MD" ] || continue
TITLE=$(basename "$MD" .md)
OUT="$(mktemp -d)/${TITLE}.html"
BODY=$(pandoc -f gfm+footnotes+tex_math_dollars -t html --mathjax "$MD")
cat > "$OUT" <<EOF
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>${TITLE}</title>
</head>
<body>
<article>
<h1>${TITLE}</h1>
${BODY}
</article>
</body>
</html>
EOF
open "$OUT"
done⌘S. Name it Obsidian Reader. For "Where:" pick Applications (under your home folder, ~/Applications, or the system /Applications — either works). File Format stays as Application. Click Save.
In Finder, right-click any .md file → Open With → Other… → navigate to Obsidian Reader.app, select it, click Open. The browser should open with the rendered HTML. If something fails, see the troubleshooting below.
.mdRight-click any .md file in Finder → Get Info (⌘I). In the Info window, expand the Open with: section. Choose Obsidian Reader from the dropdown (use Other… if it's not listed; you may need to toggle "Enable: All Applications" in the chooser to make non-traditional .md openers visible). Click Change All… and confirm.
That's it. Double-clicking any .md in Finder now runs the script.
In rough order of likelihood:
Console.app, filter for "Obsidian Reader", trigger the app, look for the error. Usually it's pandoc: command not found — meaning pandoc isn't where the script's PATH expects. Run which pandoc in Terminal. If it's neither /opt/homebrew/bin/pandoc nor /usr/local/bin/pandoc, edit the export PATH=... line in the Automator action to include its actual directory.brew install pandoc in Terminal..app once → Open → confirm. Mac remembers the exception. Required because you built the app yourself and it's unsigned.chrome://extensions (or your browser's equivalent).Pandoc passes Obsidian-flavoured wikilinks ([[foo]]) and transclusions (![[foo]]) through as literal text. If your typical notes rely on these and you want them rendered properly, either pre-process with sed to rewrite them as ordinary links, or swap pandoc for a converter that handles them natively (e.g. a small marked script with custom extensions).