pg_readme 0.3.2

This Release
pg_readme 0.3.2
Date
Status
Stable
Latest Stable
pg_readme 0.6.6 —
Other Releases
Abstract
Generates a Markdown README from COMMENT objects found in the pg_description system catalog.
Description
The pg_readme PostgreSQL extension provides functions to generate a README.md document for a database extension or schema, based on COMMENT objects found in the pg_description system catalog.
Released By
bigsmoke
License
GPL 3
Resources
Special Files
Tags

Extensions

pg_readme 0.3.2

Documentation

LICENSE
LICENSE

README

Contents

\pset tuples_only
\pset format unaligned

begin;

-- We install `hstore` explicitly into `ext` to get
-- a nice schema name in the `README.md`
create schema if not exists ext;
create extension if not exists hstore
    with schema ext;

create schema readme;
create extension pg_readme
    with schema readme;

select readme.pg_extension_readme('pg_readme');

rollback;