Skip to content

Commit

Permalink
fix: warn where not supported, disable seo indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
sgammon committed May 15, 2024
1 parent ff7cb8d commit 10a4551
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Writerside/cfg/buildprofiles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<!-- SEO -->
<generate-canonicals>true</generate-canonicals>
<noindex-content>false</noindex-content>
<noindex-content>true</noindex-content>
<og-twitter>https://twitter.com/elide_dev</og-twitter>
<!-- <og-image></og-image> -->

Expand All @@ -59,7 +59,7 @@

<build-profile instance="e">
<variables>
<noindex-content>false</noindex-content>
<noindex-content>true</noindex-content>
</variables>
</build-profile>

Expand Down
4 changes: 4 additions & 0 deletions Writerside/topics/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ Certain features are not supported on macOS yet:
Espresso ([Java on Truffle](https://www.graalvm.org/latest/reference-manual/java-on-truffle/)) is experimental and
this limitation is expected to change eventually.

## Framework Installation



<seealso>
<category ref="gettingStarted">
<a href="GettingStarted.md">Getting Started with %product%</a>
Expand Down
6 changes: 6 additions & 0 deletions Writerside/topics/Polyglot.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ def call_hello():
say_hello("%product%")
```

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

Expand Down Expand Up @@ -78,6 +81,9 @@ def call_hello_look_ma_try_this_with_serialization():
say_hello(get_name)
```

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

Expand Down

0 comments on commit 10a4551

Please sign in to comment.