This awk script splits firefox extension blocknote output into markdown (or other lwm --- just change the suffix) files. See https://addons.mozilla.org/en-US/firefox/addon/blocknote/
/^### START/ { out = $4; next; }
/^### STOP/ { next; }
{ if (out != "") { print $0 > out".md" } }