Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagecell
Path: blob/master/contrib/dokuwiki/conf/default.php
447 views
1
<?php
2
/**
3
* Default settings for the sagecell plugin
4
*
5
* @author Jason Grout <[email protected]>
6
*/
7
8
$conf['url'] = 'https://sagecell.sagemath.org';
9
$conf['style'] = '.sagecell .CodeMirror pre {
10
padding: 0 4px !important;
11
border: 0px !important;
12
margin: 0 !important;}
13
.sagecell .CodeMirror {
14
height: auto;
15
}
16
.sagecell .CodeMirror-scroll {
17
overflow-y: auto;
18
overflow-x: auto;
19
max-height: 200px;
20
}
21
';
22
23