FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix broken build · devKitchen-codeJS/btcpp_website@62e0c7a · GitHub

This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit 62e0c7a

Browse files
committed
fix broken build
1 parent b85c918 commit 62e0c7a

12 files changed

Lines changed: 19 additions & 22 deletions

File tree

‎.gitignore‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/node_modules/
22
/package-lock.json
33
/.docusaurus/
4+
/build/

‎docs/intro.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This blocks are implemented in C++ and are "composable": in other words, can be
4343

4444
In the image above, you can see as we are arranging these actions in a simple Sequence;
4545
actions will be executed in order from left to right. To learn mode, visit the page
46-
[Introduction to BTs](learn-the-basic/BT_basics.md).
46+
[Introduction to BTs](learn-the-basics/BT_basics.md).
4747

4848
### Main Advantages of Behavior Trees
4949

‎docs/learn-the-basics/BT_basics.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ is interrupted.
145145

146146
### Second ControlNode: Fallback
147147

148-
[FallbackNodes](FallbackNode.md), known also as __"Selectors"__,
148+
[FallbackNodes](nodes-library/FallbackNode.md), known also as __"Selectors"__,
149149
are nodes that can express, as the name suggests, fallback strategies,
150150
i.e. what to do next if a child returns FAILURE.
151151

‎docs/learn-the-basics/xml_format.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# The XML schema
33

4-
In the [first tutorial](tutorial_01_first_tree.md) this simple tree
4+
In the [first tutorial](tutorial-basics/tutorial_01_first_tree.md) this simple tree
55
was presented.
66

77
``` XML
@@ -43,7 +43,7 @@ You may notice that:
4343

4444
## Ports Remapping and pointers to Blackboards entries
4545

46-
As explained in the [second tutorial](tutorial_02_basic_ports.md)
46+
As explained in the [second tutorial](tutorial-basics/tutorial_02_basic_ports.md)
4747
input/output ports can be remapped using the name of an entry in the
4848
Blackboard, in other words, the __key__ of a __key/value__ pair of the BB.
4949

@@ -130,7 +130,7 @@ must be modified as follows:
130130

131131
## Subtrees
132132

133-
As we saw in [this tutorial](tutorial_06_subtree_ports.md), it is possible to include
133+
As we saw in [this tutorial](tutorial-basics/tutorial_06_subtree_ports.md), it is possible to include
134134
a Subtree inside another tree to avoid "copy and pasting" the same tree in
135135
multiple location and to reduce complexity.
136136

‎docs/tutorial-basics/tutorial_04_sequence.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Flow of execution should be returned as fast as possible.
2525
Users should fully understand how Concurrency is achieved in BT.CPP
2626
and learn best practices about how to develop their own Asynchronous
2727
Actions. You will find an extensive article
28-
[here](tutoral-advanced/asynchronous_nodes.md).
28+
[here](tutorial-advanced/asynchronous_nodes.md).
2929
:::
3030

3131
## StatefulAsyncAction

‎docusaurus.config.js‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ const config = {
2525
i18n: {
2626
defaultLocale: 'en',
2727
locales: ['en'],
28+
localeConfigs: {
29+
en: {
30+
htmlLang: 'en-US',
31+
},
32+
},
2833
},
2934

3035
plugins: [require.resolve("@cmfcmf/docusaurus-search-local")],
@@ -39,7 +44,6 @@ const config = {
3944
versions: {
4045
current: {
4146
label: '4.0',
42-
path: '4.0',
4347
},
4448
3.8: {
4549
label: '3.8',
@@ -94,7 +98,6 @@ const config = {
9498
{
9599
type: 'docsVersionDropdown',
96100
position: 'right',
97-
dropdownItemsAfter: [{to: '/versions'}],
98101
dropdownActiveClassDisabled: true,
99102
},
100103
{to: '/blog', label: 'Blog', position: 'right'},

‎package.json‎

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,8 @@
1818
"@docusaurus/core": "2.1.0",
1919
"@docusaurus/plugin-ideal-image": "^2.1.0",
2020
"@docusaurus/preset-classic": "2.1.0",
21-
"@emailjs/browser": "^3.7.0",
22-
"@fortawesome/fontawesome-svg-core": "^6.2.0",
23-
"@fortawesome/free-solid-svg-icons": "^6.2.0",
24-
"@fortawesome/react-fontawesome": "^0.2.0",
2521
"@mdx-js/react": "^1.6.22",
26-
"@trendyol-js/react-carousel": "^3.0.0",
27-
"bootstrap": "^5.2.2",
2822
"clsx": "^1.2.1",
29-
"emailjs": "^4.0.1",
3023
"prism-react-renderer": "^1.3.5",
3124
"react": "^17.0.2",
3225
"react-bootstrap": "^2.5.0",

‎src/pages/migration.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ more consistent.
3939

4040
## SetBlackbard and BlackboardPrecondition
4141

42-
The new [scripting language](docs/tutorial-advanced/scripting)
42+
The new [scripting language](/docs/tutorial-advanced/scripting)
4343
is much simpler and more powerful.
4444

4545
Old code in **3.8+**:

‎versioned_docs/version-3.8/intro.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This blocks are implemented in C++ and are "composable": in other words, can be
4343

4444
In the image above, you can see as we are arranging these actions in a simple Sequence;
4545
actions will be executed in order from left to right. To learn mode, visit the page
46-
[Introduction to BTs](learn-the-basic/BT_basics.md).
46+
[Introduction to BTs](learn-the-basics/BT_basics.md).
4747

4848
### Main Advantages of Behavior Trees
4949

‎versioned_docs/version-3.8/learn-the-basics/BT_basics.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ is interrupted.
145145

146146
### Second ControlNode: Fallback
147147

148-
[FallbackNodes](FallbackNode.md), known also as __"Selectors"__,
148+
[FallbackNodes](nodes-library/FallbackNode.md), known also as __"Selectors"__,
149149
are nodes that can express, as the name suggests, fallback strategies,
150150
i.e. what to do next if a child returns FAILURE.
151151

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL