|
67 | 67 | <meta name="quarto:offset" content="../../../"> |
68 | 68 | <link href="../../../developers/compiler/design-overview/index.html" rel="next"> |
69 | 69 | <link href="../../../developers/compiler/minituring-compiler/index.html" rel="prev"> |
70 | | -<link href="../../../assets/favicon.ico" rel="icon"> |
| 70 | +<link href="../../..//assets/favicon.ico" rel="icon"> |
71 | 71 | <script src="../../../site_libs/quarto-html/quarto.js" type="module"></script> |
72 | 72 | <script src="../../../site_libs/quarto-html/tabsets/tabsets.js" type="module"></script> |
73 | 73 | <script src="../../../site_libs/quarto-html/popper.min.js"></script> |
|
121 | 121 |
|
122 | 122 | <meta property="og:title" content="The Turing Language"> |
123 | 123 | <meta property="og:description" content="Turing.jl is a probabilistic programming language and Bayesian modelling framework for the Julia programming language."> |
124 | | -<meta property="og:image" content="https://turinglang.org/docs/developers/compiler/minituring-contexts/assets/images/turing-text-logo.jpg"> |
| 124 | +<meta property="og:image" content="https://turinglang.org/docs/assets/images/turing-text-logo.jpg"> |
125 | 125 | <meta property="og:site_name" content="Turing.jl"> |
| 126 | +<meta property="og:image:alt" content="Turing.jl Logo"> |
126 | 127 | <meta property="og:locale" content="en_GB"> |
127 | 128 | <meta name="twitter:title" content="A Mini Turing Implementation II: Contexts – Turing.jl"> |
128 | 129 | <meta name="twitter:description" content="Turing.jl is a probabilistic programming language and Bayesian modelling framework for the Julia programming language."> |
129 | | -<meta name="twitter:image" content="https://turinglang.org/docs/developers/compiler/minituring-contexts/assets/images/turing-text-logo.jpg"> |
| 130 | +<meta name="twitter:image" content="https://turinglang.org/docs/assets/images/turing-text-logo.jpg"> |
130 | 131 | <meta name="twitter:creator" content="@Hong_Ge2"> |
131 | 132 | <meta name="twitter:site" content="@TuringLang"> |
132 | 133 | <meta name="twitter:card" content="summary_large_image"> |
@@ -1150,7 +1151,7 @@ <h2 class="anchored" data-anchor-id="contexts-within-contexts">Contexts within c |
1150 | 1151 | } |
1151 | 1152 | var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); |
1152 | 1153 | var mailtoRegex = new RegExp(/^mailto:/); |
1153 | | - var filterRegex = new RegExp("https:\/\/turinglang\.org\/docs\/"); |
| 1154 | + var filterRegex = new RegExp("https:\/\/turinglang\.org\/docs"); |
1154 | 1155 | var isInternal = (href) => { |
1155 | 1156 | return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href); |
1156 | 1157 | } |
|
0 commit comments