From 11de995d381c3dc58cc6736f4fe0f7cd4ff42ae9 Mon Sep 17 00:00:00 2001 From: Larry Kluger Date: Thu, 19 Aug 2021 04:38:30 +0300 Subject: [PATCH] docs: typo in launch-app-from-url-in-another-app.md (#30566) * 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: 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 7cd6c63670c1..dafe86d8ce28 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