Ihor Radchenko wrote:
>
> It should, if you have markdown-mode installed.
>
> Try
>
> #+begin_src markdown :tangle yes
> ,* Item 1
> ,* Item 2
> - Item 2a
> + Item 2a1
> - Item 2b
> ,* Item 3
> #+end_src
Affirmative, after installing elpa-markdown-mode (example in Linux Debian's
synap
Norwid Behrnd writes:
> I seek a similar fence to document a pattern in Markdown. An example would be
> a nested list such as
>
> ```markdown
> * Item 1
> * Item 2
> - Item 2a
> + Item 2a1
> - Item 2b
> * Item 3
> ```
>
> Contrasting to my anticipation, neither `C-c C-, s` followed by a
Dear list,
based on previous experience to fence small snippets of code in org-mode e.g.,
for Fortran in a pattern like
```org
* example Fortran (not FORTRAN 77)
#+begin_src f90 :tangle echo.f90
program test
implicit none
write (*, '(A)') "Fortran"
end program test
#+end_src
```
I see