Albert Krewinkel writes:
> Hi Ian,
>
> You can escape leading stars by putting a comma in front of them:
>
> #+begin_src sh
> cat <<'EOF'
> ,* some text
> EOF
> #+end_src
>
> This should do what you want.
>
> HTH,
> Albert
Ahh, thank you.
Hi Ian,
Ian Kelling writes:
> I've had this bug me a few times when I work with here documents in bash.
>
> #+begin_src sh
> some-command <<'EOF'
> * some text
> EOF
> #+end_src
>
> the line beginning with * is treated as a title and folded. The same
> goes for example blocks, and perhaps other
I've had this bug me a few times when I work with here documents in bash.
#+begin_src sh
some-command <<'EOF'
* some text
EOF
#+end_src
the line beginning with * is treated as a title and folded. The same
goes for example blocks, and perhaps other things.
as a workaround, I can insert a tab cha