Skip to content

Commit

Permalink
Deployed 383fffe with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoni committed Dec 27, 2023
1 parent d3bd7e4 commit ba919e5
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 52 deletions.
24 changes: 12 additions & 12 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
<title>referee</title>
<link rel="stylesheet" href="/css/theme.css" />
<link rel="stylesheet" href="/css/theme_extra.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github.min.css" />

<script src="/js/jquery-3.6.0.min.js" defer></script>
<!--[if lt IE 9]>
<script src="/js/html5shiv.min.js"></script>
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</head>

<body class="wy-body-for-nav" role="document">
Expand Down Expand Up @@ -50,7 +49,7 @@
<div class="wy-nav-content">
<div class="rst-content"><div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="/." class="icon icon-home" aria-label="Docs"></a> &raquo;</li>
<li><a href="/." class="icon icon-home" aria-label="Docs"></a></li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
Expand Down Expand Up @@ -95,14 +94,15 @@ <h1 id="404-page-not-found">404</h1>

</span>
</div>
<script>var base_url = '/';</script>
<script src="/js/theme_extra.js" defer></script>
<script src="/js/theme.js" defer></script>
<script src="/search/main.js" defer></script>
<script defer>
window.onload = function () {
<script src="/js/jquery-3.6.0.min.js"></script>
<script>var base_url = "/";</script>
<script src="/js/theme_extra.js"></script>
<script src="/js/theme.js"></script>
<script src="/search/main.js"></script>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
};
});
</script>

</body>
Expand Down
6 changes: 3 additions & 3 deletions css/theme.css

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title>referee</title>
<link rel="stylesheet" href="css/theme.css" />
<link rel="stylesheet" href="css/theme_extra.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github.min.css" />

<script>
// Current page data
Expand All @@ -17,12 +17,11 @@
var mkdocs_page_url = null;
</script>

<script src="js/jquery-3.6.0.min.js" defer></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</head>

<body class="wy-body-for-nav" role="document">
Expand Down Expand Up @@ -557,8 +556,8 @@
<div class="wy-nav-content">
<div class="rst-content"><div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="." class="icon icon-home" aria-label="Docs"></a> &raquo;</li>
<li>referee</li>
<li><a href="." class="icon icon-home" aria-label="Docs"></a></li>
<li class="breadcrumb-item active">referee</li>
<li class="wy-breadcrumbs-aside">
<a href="https://github.com/sinonjs/referee/edit/master/docs/index.md" class="icon icon-github"> Edit on GitHub</a>
</li>
Expand Down Expand Up @@ -793,7 +792,7 @@ <h4 id="string-matcher">String matcher</h4>
return &quot;yeah&quot;;
},
},
&quot;Yeah!&quot;
&quot;Yeah!&quot;,
); // Passes
</code></pre>
<p>The last example is not symmetric. When the matcher is a string, the actual value is coerced to a string - in this case using <code>toString</code>. Changing the order of the arguments would cause the matcher to be an object, in which case different rules apply (see below).</p>
Expand All @@ -809,7 +808,7 @@ <h4 id="regular-expression-matcher">Regular expression matcher</h4>
return &quot;yeah!&quot;;
},
},
/yeah/
/yeah/,
); // Passes
assert.match(234, /[a-z]/); // Fails
</code></pre>
Expand All @@ -823,7 +822,7 @@ <h4 id="number-matcher">Number matcher</h4>
return &quot;42&quot;;
},
},
42
42,
); // Passes
assert.match(234, 1234); // Fails
</code></pre>
Expand All @@ -848,7 +847,7 @@ <h4 id="function-matcher">Function matcher</h4>
},
function () {
return true;
}
},
);

// Fails
Expand All @@ -874,7 +873,7 @@ <h4 id="object-matcher">Object matcher</h4>
},
{
name: &quot;Chris&quot;,
}
},
);

// Fails
Expand Down Expand Up @@ -1399,23 +1398,23 @@ <h3 id="exception"><code>exception()</code></h3>
function () {
throw new TypeError(&quot;Ooops!&quot;);
},
{ name: &quot;TypeError&quot; }
{ name: &quot;TypeError&quot; },
);

// Fails, wrong exception type
assert.exception(
function () {
throw new Error(&quot;Aww&quot;);
},
{ name: &quot;TypeError&quot; }
{ name: &quot;TypeError&quot; },
);

// Fails, wrong exception message
assert.exception(
function () {
throw new Error(&quot;Aww&quot;);
},
{ message: &quot;Ooops!&quot; }
{ message: &quot;Ooops!&quot; },
);

// Fails, wrong exception type
Expand All @@ -1429,7 +1428,7 @@ <h3 id="exception"><code>exception()</code></h3>
}
return true;
},
&quot;Type of exception is wrong!&quot;
&quot;Type of exception is wrong!&quot;,
); // with message to print, if test fails
</code></pre>
<h3 id="near"><code>near()</code></h3>
Expand Down Expand Up @@ -1985,20 +1984,21 @@ <h3 id="class-assertionerror"><code>class AssertionError()</code></h3>

</span>
</div>
<script>var base_url = '.';</script>
<script src="js/theme_extra.js" defer></script>
<script src="js/theme.js" defer></script>
<script src="search/main.js" defer></script>
<script defer>
window.onload = function () {
<script src="js/jquery-3.6.0.min.js"></script>
<script>var base_url = ".";</script>
<script src="js/theme_extra.js"></script>
<script src="js/theme.js"></script>
<script src="search/main.js"></script>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
};
});
</script>

</body>
</html>

<!--
MkDocs version : 1.4.3
Build Date UTC : 2023-06-29 09:07:31.484255+00:00
MkDocs version : 1.5.3
Build Date UTC : 2023-12-27 17:26:51.238196+00:00
-->
24 changes: 12 additions & 12 deletions search.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
<title>referee</title>
<link rel="stylesheet" href="./css/theme.css" />
<link rel="stylesheet" href="./css/theme_extra.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github.min.css" />

<script src="./js/jquery-3.6.0.min.js" defer></script>
<!--[if lt IE 9]>
<script src="./js/html5shiv.min.js"></script>
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</head>

<body class="wy-body-for-nav" role="document">
Expand Down Expand Up @@ -50,7 +49,7 @@
<div class="wy-nav-content">
<div class="rst-content"><div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="./." class="icon icon-home" aria-label="Docs"></a> &raquo;</li>
<li><a href="./." class="icon icon-home" aria-label="Docs"></a></li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
Expand Down Expand Up @@ -102,14 +101,15 @@ <h1 id="search">Search Results</h1>

</span>
</div>
<script>var base_url = '.';</script>
<script src="./js/theme_extra.js" defer></script>
<script src="./js/theme.js" defer></script>
<script src="./search/main.js" defer></script>
<script defer>
window.onload = function () {
<script src="./js/jquery-3.6.0.min.js"></script>
<script>var base_url = ".";</script>
<script src="./js/theme_extra.js"></script>
<script src="./js/theme.js"></script>
<script src="./search/main.js"></script>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
};
});
</script>

</body>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit ba919e5

Please sign in to comment.