From b26760bed5618ac3b2fd8b2172feb393c452dadb Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Thu, 19 Aug 2021 15:11:22 +0900 Subject: [PATCH] docs: typo in launch-app-from-url-in-another-app.md (#30628) * Typo in launch-app-from-url-in-another-app.md Code snippet for the info.plist example had html formatting. Removed. * Fix paddings Co-authored-by: Larry Kluger Co-authored-by: Cheng Zhao --- .../launch-app-from-url-in-another-app.md | 44 ++++++++----------- 1 file changed, 19 insertions(+), 25 deletions(-) diff --git a/docs/tutorial/launch-app-from-url-in-another-app.md b/docs/tutorial/launch-app-from-url-in-another-app.md index 29caf47989..52bffdd650 100644 --- a/docs/tutorial/launch-app-from-url-in-another-app.md +++ b/docs/tutorial/launch-app-from-url-in-another-app.md @@ -127,31 +127,25 @@ can add the flag `--extend-info` with a path to the `plist` you've created. The ### Plist ```XML -

-

macOS plist
-

-    
-        
-            
-                
-                    CFBundleURLTypes
-                    
-                        
-                            CFBundleURLSchemes
-                            
-                                electron-api-demos
-                            
-                            CFBundleURLName
-                            Electron API Demos Protocol
-                        
-                    
-                    ElectronTeamID
-                    VEKTX9H2N7
-                
-            
-        
-    
-

+ + + + + CFBundleURLTypes + + + CFBundleURLSchemes + + electron-api-demos + + CFBundleURLName + Electron API Demos Protocol + + + ElectronTeamID + VEKTX9H2N7 + + ``` ## Conclusion