Skip to content

Commit 3b5be33

Browse files
committed
Change syntax highlighting style: white background
1 parent 9aa385f commit 3b5be33

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ Therefore, you can use these shell commands:
102102

103103
~~~sh
104104
cd ./lidoapp_bp/static
105-
npm init -y
106-
npm install
105+
npm ci
106+
cd ../..
107107
~~~
108108

109109
Then start `app.py` (optionally with argument `--port`):

lidoapp_bp/templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,10 @@ <h4>RDF Output (ttl)</h4>
415415
}
416416
}).mount('#app');
417417

418-
function makeEditor(label, style = "ace/theme/monokai", fmt = "ace/mode/xml") {
418+
function makeEditor(label, fmt = "ace/mode/xml") {
419419
// Returns an ace editor object
420420
var ed = ace.edit(label);
421-
ed.setTheme(style);
421+
//ed.setTheme("") //ace/theme/monokai");
422422
ed.session.setMode(fmt);
423423
ed.setPrintMarginColumn(-1);
424424
return ed;
@@ -428,7 +428,7 @@ <h4>RDF Output (ttl)</h4>
428428
var lidoEditor = makeEditor("lidoEditor");
429429
lidoEditor.setValue(app.lido);
430430
lidoEditor.on('change', function() {onLidoChanged()});
431-
var rdfEditor = makeEditor("rdfEditor", "", "ace/mode/turtle");
431+
var rdfEditor = makeEditor("rdfEditor", "ace/mode/turtle");
432432
rdfEditor.setValue('')
433433

434434
function getLido(mode=0) {

0 commit comments

Comments
 (0)