Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f601503

Browse files
author
Ilya Plotnikov
committed
Fix links
1 parent fdf0faf commit f601503

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgres-markdown",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Builds Slate compatible markdown from a Postgres connection",
55
"author": "Ilya Plotnikov ([email protected])",
66
"repository": {

src/md-schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default class MdSchema {
4646
})
4747
md.push({
4848
ul: inheritedTables
49-
.map((inherits: Inherits) => `[${inherits.findTableKey}](#${inherits.findTableKey})`)
49+
.map((inherits: Inherits) => `[${inherits.findTableKey}](#${inherits.findTableKey.replace('.', '-')})`)
5050
.filter((value, index, self) => self.indexOf(value) === index)
5151
})
5252
}

0 commit comments

Comments
 (0)