Skip to content

Commit e10c8ac

Browse files
committed
feat(docusaurus): update to latest docusaurus implementation
1 parent b78e2c2 commit e10c8ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+21806
-16207
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '16.17.x'
17+
node-version: '20.18.x'
1818
- name: Test Build
1919
run: |
2020
if [ -e yarn.lock ]; then
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v2
3333
- uses: actions/setup-node@v3
3434
with:
35-
node-version: '16.17.x'
35+
node-version: '20.18.x'
3636
- uses: webfactory/[email protected]
3737
with:
3838
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.17.0
1+
20.18.3

docs/_includes/apm/setup-apm.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**If you don't have an APM project setup, expand the guide below to setup an APM project before installing the extension.**
22

3-
<details><summary>Setup APM</summary>
3+
<details>
4+
<summary>Setup APM</summary>
45
<p>
56

67
### Install APM

docs/adverts/consent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To retrieve and update the consent status call the `getConsentStatus` function:
3838
Adverts.service.consent.getConsentStatus( "publisher_id" );
3939
```
4040

41-
The publisher id is taken from your AdMob account as shown in the [AdMob Settings](consent#admob-settings) section.
41+
The publisher id is taken from your AdMob account as shown in the AdMob Settings section.
4242

4343
This is an asynchronous process and will dispatch one of two possible events:
4444

docs/adverts/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ https://support.google.com/admob/answer/9905175
3434

3535
#### Invalid GAD Identifier
3636

37-
If you encounter a crash on launch, ensure you have added the [info additions](add-the-extension#info-additions) correctly. The AdMob SDK will terminate your application if you haven't provided your Google AdMob application identifier in the info additions.
37+
If you encounter a crash on launch, ensure you have added the [InfoAdditions](add-the-extension) correctly. The AdMob SDK will terminate your application if you haven't provided your Google AdMob application identifier in the info additions.
3838

3939

4040

docs/appgroupdefaults/_includes/add-apm.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Note: All of the commands below should be run in a terminal / command prompt in
77

88
**If you don't have an APM project setup, expand the guide below to setup an APM project before installing the extension.**
99

10-
<details><summary>Setup APM</summary>
10+
<details>
11+
<summary>Setup APM</summary>
1112
<p>
1213

1314
### Install APM

docs/applesignin/_includes/add-apm.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Note: All of the commands below should be run in a terminal / command prompt in
77

88
**If you don't have an APM project setup, expand the guide below to setup an APM project before installing the extension.**
99

10-
<details><summary>Setup APM</summary>
10+
<details>
11+
<summary>Setup APM</summary>
1112
<p>
1213

1314
### Install APM

docs/beacon/_includes/add-apm.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Note: All of the commands below should be run in a terminal / command prompt in
77

88
**If you don't have an APM project setup, expand the guide below to setup an APM project before installing the extension.**
99

10-
<details><summary>Setup APM</summary>
10+
<details>
11+
<summary>Setup APM</summary>
1112
<p>
1213

1314
### Install APM

docs/camerarollextended/adding-files.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ title: Adding Images and Video
33
sidebar_label: Adding Images and Video
44
---
55

6+
import Tabs from '@theme/Tabs'
7+
import TabItem from '@theme/TabItem'
8+
69
## Adding BitmapData
710

811
With the standard `CameraRoll` implementation you can easily add a `BitmapData` reference to the camera roll, using the `addBitmapData` function.

docs/facebookapi/core/app-links/handling-incoming-links.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ To ensure an engaging user experience, you should process the incoming link when
1010

1111
## Receiving App Links
1212

13-
Your app will receive a link where {url} is the incoming URL based on a custom scheme that you have defined for your app. You'll also receive an al_applink_data query parameter with JSON encoded content.
13+
Your app will receive a link where `url` is the incoming URL based on a custom scheme that you have defined for your app. You'll also receive an al_applink_data query parameter with JSON encoded content.
1414

1515
```json
16-
{url}?al_applink_data=
16+
url?al_applink_data=
1717
{
1818
"target_url": "{the-target-url}",
1919
"extras": {

0 commit comments

Comments
 (0)