home / content

releases

9 rows where repo = 220716822

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: target_commitish, prerelease, created_at (date), published_at (date)

id ▼ html_url author node_id tag_name target_commitish name draft prerelease created_at published_at body repo reactions mentions_count
21343109 https://github.com/simonw/datasette-render-markdown/releases/tag/0.1a simonw 9599 MDc6UmVsZWFzZTIxMzQzMTA5 0.1a master 0.1a 0 1 2019-11-09T23:42:31Z 2019-11-09T23:49:58Z First working release datasette-render-markdown 220716822    
21496530 https://github.com/simonw/datasette-render-markdown/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTIxNDk2NTMw 0.2 master 0.2 0 0 2019-11-15T05:34:11Z 2019-11-15T05:35:12Z Added `{{ render_markdown(value) }}` custom template function. datasette-render-markdown 220716822    
24755510 https://github.com/simonw/datasette-render-markdown/releases/tag/1.0 simonw 9599 MDc6UmVsZWFzZTI0NzU1NTEw 1.0 master 1.0 0 0 2020-03-22T23:15:04Z 2020-03-22T23:21:04Z * Ability to configure columns in metadata - #1 * Allow customization of wildcard patterns - #3 datasette-render-markdown 220716822    
24825087 https://github.com/simonw/datasette-render-markdown/releases/tag/1.1 simonw 9599 MDc6UmVsZWFzZTI0ODI1MDg3 1.1 master 1.1 0 0 2020-03-24T19:47:15Z 2020-03-24T19:51:13Z * Support for Markdown extensions, including GitHub-Flavored Markdown. [Documentation](https://github.com/simonw/datasette-render-markdown/blob/master/README.md#markdown-extensions). #4 datasette-render-markdown 220716822    
24825378 https://github.com/simonw/datasette-render-markdown/releases/tag/1.1.1 simonw 9599 MDc6UmVsZWFzZTI0ODI1Mzc4 1.1.1 master 1.1.1 0 0 2020-03-24T20:01:01Z 2020-03-24T20:01:29Z * Improved README. datasette-render-markdown 220716822    
26102808 https://github.com/simonw/datasette-render-markdown/releases/tag/1.1.2 simonw 9599 MDc6UmVsZWFzZTI2MTAyODA4 1.1.2 master 1.1.2 0 0 2020-05-02T08:31:23Z 2020-05-02T08:32:21Z * Allow `<a href="...">` attributes, fixes #6 datasette-render-markdown 220716822    
33191234 https://github.com/simonw/datasette-render-markdown/releases/tag/1.2 simonw 9599 MDc6UmVsZWFzZTMzMTkxMjM0 1.2 main 1.2 0 0 2020-10-28T22:53:30Z 2020-10-28T22:54:59Z - Now uses `white-space: normal` to fix a bug caused by Datasette's use of `white-space: pre-wrap`. #9 datasette-render-markdown 220716822    
50093392 https://github.com/simonw/datasette-render-markdown/releases/tag/2.0 simonw 9599 RE_kwDODSffFs4C_F1Q 2.0 main 2.0 0 0 2021-09-22T22:17:11Z 2021-09-22T22:18:20Z - Markdown image tags of the form `![alt text](URL-to-image)` are now supported by default. This change could break backwards-compatibility for some installations, hence the 2.0 version number. [#10](https://github.com/simonw/datasette-render-markdown/issues/10) datasette-render-markdown 220716822    
60542160 https://github.com/simonw/datasette-render-markdown/releases/tag/2.1 simonw 9599 RE_kwDODSffFs4Dm8zQ 2.1 main 2.1 0 0 2022-02-26T18:20:54Z 2022-02-26T18:22:00Z - Fixed bug where potential URLs inside of `<pre>` links were being turned into links. [#11](https://github.com/simonw/datasette-render-markdown/issues/11) datasette-render-markdown 220716822    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [releases] (
   [html_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [author] INTEGER REFERENCES [users]([id]),
   [node_id] TEXT,
   [tag_name] TEXT,
   [target_commitish] TEXT,
   [name] TEXT,
   [draft] INTEGER,
   [prerelease] INTEGER,
   [created_at] TEXT,
   [published_at] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
, [reactions] TEXT, [mentions_count] INTEGER);
CREATE INDEX [idx_releases_repo]
    ON [releases] ([repo]);
CREATE INDEX [idx_releases_author]
    ON [releases] ([author]);
Powered by Datasette · Queries took 19.268ms