Skip to content

Commit 539971a

Browse files
committed
Update struct_model.html
1 parent fd98789 commit 539971a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

doc/struct_model.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<meta charset="utf-8" />
88
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
99
<meta name="generator" content="pandoc" />
10+
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
1011

1112
<meta name="viewport" content="width=device-width, initial-scale=1">
1213

@@ -94,7 +95,7 @@
9495
if (rule.type !== rule.STYLE_RULE || rule.selectorText !== "div.sourceCode") continue;
9596
var style = rule.style.cssText;
9697
// check if color or background-color is set
97-
if (rule.style.color === '' || rule.style.backgroundColor === '') continue;
98+
if (rule.style.color === '' && rule.style.backgroundColor === '') continue;
9899
// replace div.sourceCode by a pre.sourceCode rule
99100
sheets[i].deleteRule(j);
100101
sheets[i].insertRule('pre.sourceCode{' + style + '}', j);
@@ -289,6 +290,9 @@
289290
code > span.fu { color: #900; font-weight: bold; } code > span.er { color: #a61717; background-color: #e3d2d2; }
290291
</style>
291292

293+
294+
295+
292296
</head>
293297

294298
<body>
@@ -459,7 +463,7 @@ <h1>Complete object</h1>
459463
<a class="sourceLine" id="cb15-33" title="33"> </a>
460464
<a class="sourceLine" id="cb15-34" title="34"> <span class="co"># entities can be initialised with populated slots</span></a>
461465
<a class="sourceLine" id="cb15-35" title="35"> <span class="dt">outputs.result_1=</span><span class="kw">entity</span>(<span class="dt">name=</span><span class="st">&#39;Result 1&#39;</span>,<span class="dt">type=</span><span class="st">&#39;dataset&#39;</span>,</a>
462-
<a class="sourceLine" id="cb15-36" title="36"> <span class="dt">description=</span><span class="st">&#39;An example entity object&#39;</span>),</a>
466+
<a class="sourceLine" id="cb15-36" title="36"> <span class="dt">description=</span><span class="st">&#39;An example entity object&#39;</span>,<span class="dt">value=</span><span class="kw">dataset</span>()),</a>
463467
<a class="sourceLine" id="cb15-37" title="37"> </a>
464468
<a class="sourceLine" id="cb15-38" title="38"> <span class="co"># outputs dont have to be entity objects but we dont recommend this.</span></a>
465469
<a class="sourceLine" id="cb15-39" title="39"> <span class="dt">outputs.result_2=</span><span class="dv">2</span></a>
@@ -490,6 +494,9 @@ <h1>Complete object</h1>
490494

491495

492496

497+
<!-- code folding -->
498+
499+
493500
<!-- dynamically load mathjax for compatibility with self-contained -->
494501
<script>
495502
(function () {

0 commit comments

Comments
 (0)