Skip to content

Commit

Permalink
add subscripts to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Sep 14, 2024
1 parent 1a61960 commit 24154ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ This version is not yet released. If you are reading this on the website, then t
- Getting the last row of an array is very common
- Add experimental subscript modifiers
- They modify the behavior of some functions and modifiers
- You can read more about them [here](https://uiua.org/docs/experimental#subscript-modifiers)
- Add the experimental [`layout`](https://uiua.org/docs/layout) function, which renders text into an image array
- Remove previously deprecated function strands
### Interpreter
Expand Down
4 changes: 2 additions & 2 deletions site/src/other.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,14 +511,14 @@ pub fn Experimental() -> impl IntoView {
<p>"Uiua has a number of features that are considered experimental. They are available in the interpreter for testing, but may be removed or changed in the future."</p>
<p>"Using experimental features requires an "<code>"# Experimental!"</code>" comment to be placed at the top of a Uiua source file."</p>

<h2 id="functions-modifiers">"Experimental Functions and Modifiers"</h2>
<Hd id="functions-modifiers">"Experimental Functions and Modifiers"</Hd>
<ul>{
Primitive::non_deprecated().filter(Primitive::is_experimental).map(|prim| {
view! { <li><Prim prim=prim/></li> }
}).collect::<Vec<_>>()
}</ul>

<h2 id="subscript-modifiers">"Subscript Modifiers"</h2>
<Hd id="subscript-modifiers">"Subscript Modifiers"</Hd>
<p>"By suffixing some functions or modifiers with a subscript number, their behavior can be modified."</p>
<p>"Subscript numbers are typed with a "<code>"__"</code>" followed by some digits. The formatter will turn them into subscript digit characters."</p>
<p>"The following functions and modifiers are supported:"</p>
Expand Down

0 comments on commit 24154ac

Please sign in to comment.