vim-pandoc / vim-pandoc-syntax

pandoc markdown syntax, to be installed alongside vim-pandoc
MIT License
425 stars 61 forks source link

Tabulation breaks triple-acute blocks #363

Open savchenko opened 2 years ago

savchenko commented 2 years ago

Normal behaviour:

image

Test snippet:

- To guess the "default" ipv4 of the target host...

```yaml
ansible_default_ipv4.address|
```

### Parameter structs

Added tabulation with two spaces, vim-pandoc-syntax fails to detect closing triple-acute:

image

- To guess the "default" ipv4 of the target host...

  ```yaml
  ansible_default_ipv4.address|default(ansible_all_ipv4_addresses[0])
  ```

### Parameter structs
user202729 commented 2 years ago

Known problem -- the character ` cannot appear at the start of a list item continuation. See broken highlighting after pre-formatted code in lists · Issue #208 · vim-pandoc/vim-pandoc-syntax