packages feed

pandoc-2.19.1: test/command/8204.md

Include abstract in Org output.
```
% pandoc --to=org --standalone
---
abstract: |
  This is an *abstract*.

  It has multiple paragraphs.
---
^D
#+begin_abstract
This is an /abstract/.

It has multiple paragraphs.

#+end_abstract
```

Parse abstract environment as *abstract* metadata field.
```
% pandoc --from=org --to=markdown --standalone
#+begin_abstract

This is an /abstract/.

It has multiple paragraphs.
#+end_abstract

Main text
^D
---
abstract: |
  This is an *abstract*.

  It has multiple paragraphs.
---

Main text
```