mirror of
https://github.com/documize/community.git
synced 2025-08-02 20:15:26 +02:00
CodeMirror dependency upgraded to v5.32.0
For handling Markdown and Code section types
This commit is contained in:
parent
3337db6b27
commit
0336f84a83
351 changed files with 3408 additions and 1945 deletions
10
gui/public/codemirror/mode/sql/index.html
vendored
Executable file → Normal file
10
gui/public/codemirror/mode/sql/index.html
vendored
Executable file → Normal file
|
@ -49,7 +49,7 @@ SELECT SQL_NO_CACHE DISTINCT
|
|||
LIMIT 1 OFFSET 0;
|
||||
</textarea>
|
||||
</form>
|
||||
<p><strong>MIME types defined:</strong>
|
||||
<p><strong>MIME types defined:</strong>
|
||||
<code><a href="?mime=text/x-sql">text/x-sql</a></code>,
|
||||
<code><a href="?mime=text/x-mysql">text/x-mysql</a></code>,
|
||||
<code><a href="?mime=text/x-mariadb">text/x-mariadb</a></code>,
|
||||
|
@ -58,7 +58,9 @@ SELECT SQL_NO_CACHE DISTINCT
|
|||
<code><a href="?mime=text/x-mssql">text/x-mssql</a></code>,
|
||||
<code><a href="?mime=text/x-hive">text/x-hive</a></code>,
|
||||
<code><a href="?mime=text/x-pgsql">text/x-pgsql</a></code>,
|
||||
<code><a href="?mime=text/x-gql">text/x-gql</a></code>.
|
||||
<code><a href="?mime=text/x-gql">text/x-gql</a></code>,
|
||||
<code><a href="?mime=text/x-gpsql">text/x-gpsql</a></code>.
|
||||
<code><a href="?mime=text/x-esper">text/x-esper</a></code>.
|
||||
</p>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
|
@ -76,8 +78,8 @@ window.onload = function() {
|
|||
autofocus: true,
|
||||
extraKeys: {"Ctrl-Space": "autocomplete"},
|
||||
hintOptions: {tables: {
|
||||
users: {name: null, score: null, birthDate: null},
|
||||
countries: {name: null, population: null, size: null}
|
||||
users: ["name", "score", "birthDate"],
|
||||
countries: ["name", "population", "size"]
|
||||
}}
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue