Skip to content

Commit c257259

Browse files
committed
setting links to not open externally when referencing within itself (for interactive quickstarts)
1 parent d44e3a3 commit c257259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/quickstart/backend/java-spring-security5/interactive.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ To make your endpoint return a JSON, you can use a Java record. The member varia
107107

108108
## Create the API controller {{{ data-action=code data-code="APIController.java" }}}
109109

110-
Create a new class named `APIController` to handle requests to the endpoints. The `APIController` has three routes as defined in the <a href="/quickstart/backend/java-spring-security5/interactive/#configure-the-resource-server" target="_blank" rel="noreferrer">Protect API Endpoints</a> section. For this example, allow all origins through `@CrossOrigin` annotation. Real applications should configure `CORS` for their use case.
110+
Create a new class named `APIController` to handle requests to the endpoints. The `APIController` has three routes as defined in the [Protect API Endpoints](/quickstart/backend/java-spring-security5/interactive/#configure-the-resource-server) section. For this example, allow all origins through `@CrossOrigin` annotation. Real applications should configure `CORS` for their use case.
111111

112112
## Run the application {{{ data-action=code data-code="APIController.java" }}}
113113

articles/quickstart/native/react-native/interactive.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ First, you must provide a way for your users to log in. We recommend using the A
101101

102102
### Configure Android
103103

104-
Open the `build.gradle` file in your application directory (typically at `android/app/build.gradle`) and add the following manifest placeholders. The value for `auth0Domain` should contain your Auth0 application settings <a href="#get-your-application-keys" target="_blank" rel="noreferrer">as configured above</a>.
104+
Open the `build.gradle` file in your application directory (typically at `android/app/build.gradle`) and add the following manifest placeholders. The value for `auth0Domain` should contain your Auth0 application settings [as configured above](#get-your-application-keys).
105105

106106
```groovy
107107
android {

0 commit comments

Comments
 (0)