mirror of
https://github.com/noodlapp/noodl-docs.git
synced 2026-03-07 17:43:27 +01:00
chore: Upgrade Docusaurus from v2 to v3 (#52)
* chore: Upgrade Docusaurus from v2 to v3 * chore: Update "Test build" GH workflow * fix: build All markdown is processed as MDX * fix: Broken links
This commit is contained in:
@@ -4,7 +4,7 @@ hide_table_of_contents: true
|
||||
title: Counter node
|
||||
---
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
# Counter
|
||||
|
||||
@@ -18,7 +18,7 @@ This node holds a <span className="ndl-data">number</span> that can be increased
|
||||
|
||||
The Counter node can be limited to a `min` and a `max` value, and the limit can be turned on and off.
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
<div className="ndl-image-with-background l">
|
||||
|
||||
@@ -30,23 +30,23 @@ The Counter node can be limited to a `min` and a `max` value, and the limit can
|
||||
|
||||
| Signal | Description |
|
||||
| -------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
|
||||
| <span className="ndl-signal">Increase Count</span> | <##input:increase##>Triggering this action will increases the count by one.<##input##> |
|
||||
| <span className="ndl-signal">Decrease Count</span> | <##input:decrease##>Triggering this action will decrease the count by one.<##input##> |
|
||||
| <span className="ndl-signal">Reset To Start</span> | <##input:reset##>Triggering this action will reset the counter to its _Start Value_.<##input##> |
|
||||
| <span className="ndl-signal">Start Value</span> | <##input:startValue##>The start value of the count. Defaults to zero.<##input##> |
|
||||
| <span className="ndl-signal">Increase Count</span> | {/*##input:increase##*/}Triggering this action will increases the count by one.{/*##input##*/} |
|
||||
| <span className="ndl-signal">Decrease Count</span> | {/*##input:decrease##*/}Triggering this action will decrease the count by one.{/*##input##*/} |
|
||||
| <span className="ndl-signal">Reset To Start</span> | {/*##input:reset##*/}Triggering this action will reset the counter to its _Start Value_.{/*##input##*/} |
|
||||
| <span className="ndl-signal">Start Value</span> | {/*##input:startValue##*/}The start value of the count. Defaults to zero.{/*##input##*/} |
|
||||
|
||||
| Data | Description |
|
||||
| ------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| <span className="ndl-data">Min Value</span> | <##input:limitsMin##>The minimum value of the counter. The counter will never decrease below this value. Note that **Limits Enabled** need to be set to `true` for this to be in effect.<##input##> |
|
||||
| <span className="ndl-data">Max Value</span> | <##input:limitsMax##>The maximum value of the counter. The counter will never increase above this value. Note that **Limits Enabled** need to be set to `true` for this to be in effect.<##input##> |
|
||||
| <span className="ndl-data">Limits Enabled</span> | <##input:limitsEnabled##>This input controls if the limits (**Min Value** and **Max Value**) are active or disabled.<##input##> |
|
||||
| <span className="ndl-data">Min Value</span> | {/*##input:limitsMin##*/}The minimum value of the counter. The counter will never decrease below this value. Note that **Limits Enabled** need to be set to `true` for this to be in effect.{/*##input##*/} |
|
||||
| <span className="ndl-data">Max Value</span> | {/*##input:limitsMax##*/}The maximum value of the counter. The counter will never increase above this value. Note that **Limits Enabled** need to be set to `true` for this to be in effect.{/*##input##*/} |
|
||||
| <span className="ndl-data">Limits Enabled</span> | {/*##input:limitsEnabled##*/}This input controls if the limits (**Min Value** and **Max Value**) are active or disabled.{/*##input##*/} |
|
||||
|
||||
## Outputs
|
||||
|
||||
| Data | Description |
|
||||
| ----------------------------------------------- | ---------------------------------------------------------------------------- |
|
||||
| <span className="ndl-data">Current Count</span> | <##output:currentCount##>This output contains the current count.<##output##> |
|
||||
| <span className="ndl-data">Current Count</span> | {/*##output:currentCount##*/}This output contains the current count.{/*##output##*/} |
|
||||
|
||||
| Signal | Description |
|
||||
| ------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
|
||||
| <span className="ndl-signal">Count Changed</span> | <##output:countChanged##>This signal will be triggered whenever the **Current Count** changes.<##output##> |
|
||||
| <span className="ndl-signal">Count Changed</span> | {/*##output:countChanged##*/}This signal will be triggered whenever the **Current Count** changes.{/*##output##*/} |
|
||||
|
||||
@@ -4,7 +4,7 @@ hide_table_of_contents: true
|
||||
title: Expression node
|
||||
---
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
# Expression
|
||||
|
||||
@@ -18,7 +18,7 @@ This node enables you to do your own calculations using simple expressons. Input
|
||||
|
||||
The <span className="ndl-node">Expression</span> node runs JavaScript under the hood and supports a range of mathematical expressions.
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
## Built in math functions
|
||||
|
||||
@@ -70,10 +70,10 @@ Inputs are automatically derived from the expression. An expression set to `a +
|
||||
|
||||
| Data | Description |
|
||||
| ---------------------------------------- | --------------------------------------------------------------------------------------------- |
|
||||
| <span className="ndl-data">Result</span> | <##output:result##>This output contains the result when evaluating the expression<##output##> |
|
||||
| <span className="ndl-data">Is true</span> | <##output:isTrue##>This output will be true if the result of the expression is "truthy", that is considered true in Javascript.<##output##> |
|
||||
| <span className="ndl-data">Is false</span> | <##output:isFalse##>This output will be true if the result of the expression is "falsy", that is considered false in Javascript.<##output##> |
|
||||
| <span className="ndl-signal">On True</span> | <##output:isTrueEv##>A signal will be sent on this output when the expression is calculated and the result is "truthy".<##output##> |
|
||||
| <span className="ndl-signal">On False</span> | <##output:isFalseEv##>A signal will be sent on this output when the expression is calculated and the result is "falsy".<##output##> |
|
||||
| <span className="ndl-data">Result</span> | {/*##output:result##*/}This output contains the result when evaluating the expression{/*##output##*/} |
|
||||
| <span className="ndl-data">Is true</span> | {/*##output:isTrue##*/}This output will be true if the result of the expression is "truthy", that is considered true in Javascript.{/*##output##*/} |
|
||||
| <span className="ndl-data">Is false</span> | {/*##output:isFalse##*/}This output will be true if the result of the expression is "falsy", that is considered false in Javascript.{/*##output##*/} |
|
||||
| <span className="ndl-signal">On True</span> | {/*##output:isTrueEv##*/}A signal will be sent on this output when the expression is calculated and the result is "truthy".{/*##output##*/} |
|
||||
| <span className="ndl-signal">On False</span> | {/*##output:isFalseEv##*/}A signal will be sent on this output when the expression is calculated and the result is "falsy".{/*##output##*/} |
|
||||
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ hide_table_of_contents: true
|
||||
title: Number Remapper node
|
||||
---
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
# Number Remapper
|
||||
|
||||
@@ -18,7 +18,7 @@ This node maps a range of input <span className="ndl-data">numbers</span> to a r
|
||||
|
||||
If the input range is `0 to 360`, the output range is `0 to 1` and the input <span className="ndl-data">number</span> is `180` the output <span className="ndl-data">number</span> will be `0.5`.
|
||||
|
||||
<##head##>
|
||||
{/*##head##*/}
|
||||
|
||||
## Inputs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user