Skip to content

Commit 10a4551

Browse files
committed
fix: warn where not supported, disable seo indexing
1 parent ff7cb8d commit 10a4551

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Writerside/cfg/buildprofiles.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<!-- SEO -->
3434
<generate-canonicals>true</generate-canonicals>
35-
<noindex-content>false</noindex-content>
35+
<noindex-content>true</noindex-content>
3636
<og-twitter>https://twitter.com/elide_dev</og-twitter>
3737
<!-- <og-image></og-image> -->
3838

@@ -59,7 +59,7 @@
5959

6060
<build-profile instance="e">
6161
<variables>
62-
<noindex-content>false</noindex-content>
62+
<noindex-content>true</noindex-content>
6363
</variables>
6464
</build-profile>
6565

Writerside/topics/Installation.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ Certain features are not supported on macOS yet:
140140
Espresso ([Java on Truffle](https://www.graalvm.org/latest/reference-manual/java-on-truffle/)) is experimental and
141141
this limitation is expected to change eventually.
142142

143+
## Framework Installation
144+
145+
146+
143147
<seealso>
144148
<category ref="gettingStarted">
145149
<a href="GettingStarted.md">Getting Started with %product%</a>

Writerside/topics/Polyglot.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ def call_hello():
2828
say_hello("%product%")
2929
```
3030

31+
> This demo does not work yet; please bear with us while our features and docs catch up to each other.
32+
> {style="warning"}
33+
3134
This is pretty easy to follow so far. We've defined that `sayHello` function in JavaScript, and now we are calling that
3235
same function from a new function, called `callHello`, in Python.
3336

@@ -78,6 +81,9 @@ def call_hello_look_ma_try_this_with_serialization():
7881
say_hello(get_name)
7982
```
8083

84+
> This demo does not work yet; please bear with us while our features and docs catch up to each other.
85+
> {style="warning"}
86+
8187
%product% will happily run this code. This is impossible with JSON, or Protobuf, or any other trickery on top of Node.js
8288
or CPython.
8389

0 commit comments

Comments
 (0)