Skip to content

Commit

Permalink
Deployed 776cf5e to 0.3 with MkDocs 1.6.0 and mike 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fusiondoc committed Aug 28, 2024
1 parent 585a23d commit ba00a82
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 0.3/api-reference/graph/types/graphobject/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3111,7 +3111,7 @@ <h3 id="_evaluate-boolean">
<p>The return value is <code>true</code> when a 'meaningful change' occurs because of this
revalidation. A 'meaningful change' is one that would affect dependencies'
behaviour. This is used to efficiently skip over calculations for dependencies.</p>
<div class="admonition fail">
<div class="admonition failure">
<p class="admonition-title">Restrictions</p>
<p>This method should finish without spawning new processes, blocking the
thread, or erroring.</p>
Expand Down
51 changes: 48 additions & 3 deletions 0.3/assets/theme/admonition.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,56 @@
background: none !important;
}

[dir="ltr"] .md-typeset :is(.admonition, details) {
.md-typeset :is(.admonition, details) {
border-radius: 0.25rem;
border-width: 0.1rem;
border-width: 0.1rem !important;
box-shadow:
0 0.25em 1.5em -0.75em var(--admonition-color),
inset 0 1em 2em -2em var(--admonition-color)
!important;
}

[data-md-color-scheme="fusiondoc-dark"] .md-typeset :is(.admonition, details) {
.md-typeset :is(.admonition, details) > :is(.admonition-title, summary)::before {
background-color: currentColor;
}

.md-typeset .note {
--admonition-color: #448aff;
}
.md-typeset .abstract {
--admonition-color: #00b0ff;
}
.md-typeset .info {
--admonition-color: #00b8d4;
}
.md-typeset .tip {
--admonition-color: #00bfa5;
}
.md-typeset .success {
--admonition-color: #00c853;
}
.md-typeset .question {
--admonition-color: #64dd17;
}
.md-typeset .warning {
--admonition-color: #ff9100;
}
.md-typeset .failure {
--admonition-color: #ff5252;
}
.md-typeset .danger {
--admonition-color: #ff1744;
}
.md-typeset .bug {
--admonition-color: #f50057;
}
.md-typeset .example {
--admonition-color: #7c4dff;
}
.md-typeset .quote {
--admonition-color: #9e9e9e;
}

[data-md-color-scheme="fusiondoc-dark"] .md-typeset .admonition.details {
--md-code-bg-color: var(--fusiondoc-grey-1);
}
2 changes: 1 addition & 1 deletion 0.3/tutorials/best-practices/instance-handling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2917,7 +2917,7 @@ <h2 id="returns">Returns<a class="headerlink" href="#returns" title="Permanent l
<span class="n">scope</span><span class="p">:</span><span class="n">ForValues</span><span class="p">(</span> <span class="p">...</span> <span class="p">)</span>
<span class="p">}</span>
</code></pre></div>
<div class="admonition fail">
<div class="admonition failure">
<p class="admonition-title">Returning multiple values is fragile</p>
<p>Don't return multiple values directly from your function. When a function
returns multiple values directly, the extra returned values can easily get
Expand Down
2 changes: 1 addition & 1 deletion 0.3/tutorials/best-practices/optimisation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2957,7 +2957,7 @@ <h1>Optimisation</h1>
<hr />
<h2 id="update-skipping">Update Skipping<a class="headerlink" href="#update-skipping" title="Permanent link">&para;</a></h2>
<p>Fusion tries to skip updates when they result in 'meaningless changes'.</p>
<div class="admonition summary">
<div class="admonition abstract">
<p class="admonition-title">TL;DR</p>
<p>When your computations return values that aren't meaningfully different,
Fusion doesn't bother to perform further updates.</p>
Expand Down
2 changes: 1 addition & 1 deletion 0.3/tutorials/fundamentals/scopes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3147,7 +3147,7 @@ <h3 id="adding-methods-in-bulk">Adding Methods In Bulk<a class="headerlink" href
<span class="p">})</span>
</code></pre></div>
<p>You can do this for as many tables as you need.</p>
<div class="admonition fail">
<div class="admonition failure">
<p class="admonition-title">Conflicting names</p>
<p>If you pass in two tables that contain things with the same name, <code>scoped()</code>
will error.</p>
Expand Down
2 changes: 1 addition & 1 deletion 0.3/tutorials/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2837,7 +2837,7 @@ <h1>Get Started</h1>
<p>You'll not only learn how Fusion's features work, but you'll also be presented
with wisdom from those who've worked with some of the largest Fusion codebases
today.</p>
<div class="admonition caution">
<div class="admonition warning">
<p class="admonition-title">But first, some advice from the maintainers...</p>
<p><strong><span style="font-size: 1.5em; color: var(--fusiondoc-accent);">
Fusion is pre-1.0 software.
Expand Down

0 comments on commit ba00a82

Please sign in to comment.