Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ios/deep-linking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ For example, the URL `myscheme://FAQID` (where FAQID is the publish ID of an FAQ

To handle the custom URLs in your iOS app, make sure first that your app's Info.plist supports the custom URL scheme that you've provided in the FAQs. [More information](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)

You will then need to implement,`application:openURL:sourceApplication:annotation:` in your app delegate, to handle and take the required action. For example:
You will then need to implement,`application:openURL:sourceApplication:annotation:` in your app delegate, to handle and take the required action. For example -

```objc
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
Expand Down
203 changes: 89 additions & 114 deletions docs/salesforce/release-notes.mdx

Large diffs are not rendered by default.

275 changes: 111 additions & 164 deletions docs/web-chat/api.mdx

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function createConfig() {
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: "en",
locales: ["en"],
locales: ["en", "ja"],
},
trailingSlash: true,

Expand Down Expand Up @@ -93,6 +93,7 @@ async function createConfig() {
removeDefaultStopWordFilter: false,
searchContextByPaths: getDocsDirectoriesForSearchPaths("./docs"),
hideSearchBarWithNoSearchContext: true,
language: ["en", "ja"],
},
],
],
Expand Down
Loading
Loading