File tree 1 file changed +22
-3
lines changed
src/webpage/src/guide/what-is-dynapi
1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change 2
2
import { data as databases } from " /data/databases.data.ts" ;
3
3
</script >
4
4
5
+ <style scoped >
6
+ #dbms-list a {
7
+ color : var (--vp-c-text-1 );
8
+ text-decoration : none ;
9
+ }
10
+ #dbms-list a :hover {
11
+ text-decoration : underline ;
12
+ }
13
+ #dbms-list a > img {
14
+ display : inline-block ;
15
+ height : 1em ;
16
+ margin-right : 0.5em ;
17
+ }
18
+ </style >
19
+
5
20
# What is DynAPI?
6
21
7
22
DynAPI is a ** Dyn** amic ** API** for many databases. \
@@ -38,9 +53,13 @@ While DynAPI (v1) could only work with PostgreSQL databases, the new DynAPI supp
38
53
39
54
## Supported Databases
40
55
41
- <ul >
56
+ <ul id = " dbms-list " >
42
57
<li v-for="database in databases">
43
- <img style="display: inline-block; height: 1em; margin-right: 0.5em;" :src="database.src" :alt="database.label" />
44
- <span>{{ database.label }}</span>
58
+ <a :href="database.href">
59
+ <img :src="database.src" :alt="database.label" />
60
+ <span>{{ database.label }}</span>
61
+ </a>
45
62
</li>
46
63
</ul >
64
+
65
+ <small >* DynAPI is extendable to support other DBMS.</small >
You can’t perform that action at this time.
0 commit comments