Updated: Friday, September 01,2023-09-01 13:23:45

main
shwetha729 2023-09-01 13:24:02 -04:00
parent 11bd09ff75
commit 95dd56115d
3 changed files with 15 additions and 3 deletions

View File

@ -223,6 +223,7 @@
},
"active": "0434a8dd305bd586",
"lastOpenFiles": [
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230901131941.png",
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230901130417.png",
"Coding Tips (Classical)/Terminal Tips/Languages/Lisp.md",
"Coding Tips (Classical)/Terminal Tips/Languages/XML.md",
@ -270,7 +271,6 @@
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/The Family Tharavad 3562b9f5a1b440eea78163fe080f5d88/Untitled.png",
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/The Family Tharavad 3562b9f5a1b440eea78163fe080f5d88/The Homes 05406aee129c42bcaea12f637110653d/33 Windy Hill Lane 3e3b98125f3d4fe39754fae951ddc14e/Untitled.png",
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/Morning Pages Blog 5343390046d84175aa168d5cf6b72dd7/Morning Pages 170 04b26f080d304cb7a6c0bbb997461f41/Untitled.png",
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/Morning Pages Blog 5343390046d84175aa168d5cf6b72dd7/Morning pages 653 c441be6ff787470ebec5eb3ae8209d8b/Untitled.png",
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/Morning Pages Blog 5343390046d84175aa168d5cf6b72dd7/Morning pages 653 c441be6ff787470ebec5eb3ae8209d8b/Untitled 2.png"
"Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/Internet Chats/Thought Catalog - notion export/Morning Pages Blog 5343390046d84175aa168d5cf6b72dd7/Morning pages 653 c441be6ff787470ebec5eb3ae8209d8b/Untitled.png"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -47,6 +47,8 @@ Wait so hold on just a second, wouldn't this have applications in quantum??
A query language for navigating in XML document or extract elements in HTML documents
[XPath Generator](https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbDNpRmQ5eUJ6amJvRFliRkFfcFI3Tk00RFNhQXxBQ3Jtc0tudXpjSVJ3RUE3TUhFTWtNMFIyVnlhaVFDUm5aTS1wRmZZVnVtdGlabVVPcDJ1Vkd5cnU0QkFINFZEeGR4T1VJX3lJM2tEVkx2ZDYyV3lkVlVHTnViN2RTc2J6WjE4c3MyMWt4aU9ZOUJnS0lvMnE5WQ&q=https%3A%2F%2Fwww.easycodeforall.com%2FXPathUtility.jsp&v=U-MZJ6rbqi4)
Extract Value from [XPath Tool]([http://xpather.com/](https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbEFrOUp0QnNFZGUwdlNNdDI0Z2ZsbkZmUmpld3xBQ3Jtc0tsX3JXTk1raHpQb2VHSEFOdlVBbTJ4eVlEdGk3a3BMSGpGczhMT0FTUWZpQ3hnV0h0UW1RRG1xOE5EMGNVSmRLRWo4SmtGSnczX2xjb0RBajR0aUVXOEtJRS1OSDk0eEc2NUp2a2xOM191dXZOMlNPTQ&q=http%3A%2F%2Fxpather.com%2F&v=U-MZJ6rbqi4))
[Retrieve XPath](https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqblczUWVNMHB0ZFVxcGlXWGp3MGNjalhEUnBVQXxBQ3Jtc0tuaVRUTUJlN0hjeEpEQS03eS1jQmdGY0U4ODlDUzBqUE1xNVAzcFV6ZDZJM1U3clJmVy0tQkZIN2dNV0hDRjhYaTQyb3A3VVlzU2ZNazRSeWREM3E5dUthWWdETURQbWlXc2dGLTQ5LU8wa1JTR0dlUQ&q=https%3A%2F%2Fxmltoolbox.appspot.com%2Fxpath_generator.html&v=U-MZJ6rbqi4) by clicking on XML Document
### XSL/XSLT
@ -126,4 +128,14 @@ Example:
<xminselement name ="student> maxOccurs="Unbounded" minOccurs="0">
```
Ensure that it is valid.
Ensure that it is valid.
### DOM
DOM stands for Document Object Model. It represents the content of xml as a tree structure.
![[Pasted image 20230901131941.png]]
It can easily read, access, update the contents of the document & it is a programming interface (API). It is an object-oriented representation of the web page.
All XML DOMs can be accessed by any scripting language like Javascript.
Every web browser uses some document object model to make web pages accessible via JavaScript.