nodiscc / hecat

Generic automation tool around data stored as plaintext YAML files
GNU General Public License v3.0
29 stars 5 forks source link

exporters/html_table: markdown blockquotes are not rendered #86

Closed nodiscc closed 1 year ago

nodiscc commented 1 year ago

Input:

- created: '2017-07-13T03:05:20+02:00'
  description: '>    That gibberish he talked was Cityspeak, gutter talk, a mishmash of Japanese, Spanish, German, what have you. I didn’t really need a translator. I knew the lingo, every good cop did. But I wasn’t going to make it easier for him.'
  id: 2083
  private: false
  shorturl: Bl8mkA
  tags:
  - games
  - cyberpunk
  title: 'Cityspeak | Off-world: The Blade Runner Wiki | FANDOM powered by Wikia'
  updated: '2022-11-11T15:13:56+01:00'
  url: http://bladerunner.wikia.com/wiki/Cityspeak

Output:

<tr>
  <td><a href='http://bladerunner.wikia.com/wiki/Cityspeak'>Cityspeak | Off-world: The Blade Runner Wiki | FANDOM powered by Wikia</a>
  <br/><details><summary></summary><p>&gt;    That gibberish he talked was Cityspeak, gutter talk, a mishmash of Japanese, Spanish, German, what have you. I didn’t really need a translator. I knew the lingo, every good cop did. But I wasn’t going to make it easier for him.</p></details>
  </td>
  <td><code>@games</code> <code>@cyberpunk</code></td>
<tr/>

Rendered:

image

nodiscc commented 1 year ago

Not a bug, &gt; in source data will not be interpreted as a blockquote start, but > will

Input:

    {
        "created": "2022-12-18T17:39:13+01:00",
        "description": "> For people who just can't get enough of that warm vintage sound! Post, discuss, and learn about the excellent audio gear of past generations.",
        "id": 7014,
        "private": false,
        "shorturl": "QkwHfA",
        "tags": [
            "forums",
            "av",
            "technology"
        ],
        "title": "/r/Vintage Audio",
        "updated": "2022-12-21T10:44:42+01:00",
        "url": "https://old.reddit.com/r/vintageaudio/"
    },

Output:

- created: '2022-12-18T17:39:13+01:00'
  description: "> For people who just can't get enough of that warm vintage sound! Post, discuss, and learn about the excellent audio gear of past generations."
  id: 7014
  private: false
  shorturl: QkwHfA
  tags:
  - forums
  - av
  - technology
  title: /r/Vintage Audio
  updated: '2022-12-21T10:44:42+01:00'
  url: https://old.reddit.com/r/vintageaudio/

Rendered:

image