Skip to content

Commit e965ec2

Browse files
committed
Added missing files in schemas/datadict/hmtl
Minor update in sch-highlight.conf
1 parent 50bc20a commit e965ec2

File tree

6 files changed

+72
-0
lines changed

6 files changed

+72
-0
lines changed

assets/conf/themes/dark/sch-highlight.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ CAUTION: Do not modify this file directly on it's code unless you know what you
5050
<element value="%unset"/>
5151
</group>
5252

53+
<group name="include" bold="true" italic="false"
54+
underline="false" foreground-color="#00a000">
55+
<element value="@include"/>
56+
</group>
57+
5358
<group name="metachar" bold="false" italic="false"
5459
underline="false" foreground-color="#9148d9">
5560
<element value="$sp"/>

assets/conf/themes/inksaver/sch-highlight.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ CAUTION: Do not modify this file directly on it's code unless you know what you
5050
<element value="%unset"/>
5151
</group>
5252

53+
<group name="include" bold="true" italic="false"
54+
underline="false" foreground-color="#00a000">
55+
<element value="@include"/>
56+
</group>
57+
5358
<group name="metachar" bold="false" italic="false"
5459
underline="false" foreground-color="#783cb4">
5560
<element value="$sp"/>

assets/conf/themes/light/sch-highlight.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ CAUTION: Do not modify this file directly on it's code unless you know what you
5050
<element value="%unset"/>
5151
</group>
5252

53+
<group name="include" bold="true" italic="false"
54+
underline="false" foreground-color="#00a000">
55+
<element value="@include"/>
56+
</group>
57+
5358
<group name="metachar" bold="false" italic="false"
5459
underline="false" foreground-color="#783cb4">
5560
<element value="$sp"/>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Template code for data dictionary generation
2+
# CAUTION: Do not modify this file unless you know what you are doing.
3+
# Code generation can be broken if incorrect changes are made.
4+
5+
\n <footer> \n
6+
7+
[ Generated at <em> ] {date} [ </em> by <strong>pgModeler ] {version} [ </strong><br/>
8+
<a href="https://pgmodeler.io">PostgreSQL Database Modeler - https://pgmodeler.io</a><br/>
9+
Copyright © 2006 - ] {year} [ Raphael Araújo e Silva ] \n
10+
11+
\n </footer>
12+
\n </body>
13+
\n </html> \n
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Template code for data dictionary generation
2+
# CAUTION: Do not modify this file unless you know what you are doing.
3+
# Code generation can be broken if incorrect changes are made.
4+
5+
<html> \n
6+
<head> \n
7+
[ <meta charset="utf-8">
8+
<title>Data dictionary generated by pgModeler</title> ] \n
9+
10+
%if {split} %then
11+
[ <link rel="stylesheet" type="text/css" href="styles.css"> ] \n
12+
%else
13+
[ <style> ] \n
14+
{styles} \n
15+
[ </style> ] \n
16+
%end
17+
18+
</head> \n
19+
<body> \n
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Template code for data dictionary generation
2+
# CAUTION: Do not modify this file unless you know what you are doing.
3+
# Code generation can be broken if incorrect changes are made.
4+
5+
%if {datadictidx} %then
6+
\n <div>
7+
8+
%if {split} %and {previous} %then
9+
{spc} <a \s href="{previous}.html" \s class="nav-link"> [&larr;] \s {previous} </a>
10+
%end
11+
12+
%if {split} %then
13+
\n [ <a href="index.html" class="nav-link"> ]
14+
%else
15+
\n [ <a href="#index" class="nav-link"> ]
16+
%end
17+
18+
[ &uarr; Index</a> ]
19+
20+
%if {split} %and {next} %then
21+
{spc} <a \s href="{next}.html" \s class="nav-link"> {next} \s [&rarr;] </a>
22+
%end
23+
24+
\n </div> \n
25+
%end

0 commit comments

Comments
 (0)