diff --git a/webscraping.qmd b/webscraping.qmd index 8cb98b5..08316f3 100644 --- a/webscraping.qmd +++ b/webscraping.qmd @@ -140,9 +140,11 @@ Most elements can have content in between their start and end tags. This content can either be text or more elements. For example, the following HTML contains paragraph of text, with one word in bold. -

- Hi! My name is Hadley. -

+``` +

+ Hi! My name is Hadley. +

+``` The **children** are the elements it contains, so the `

` element above has one child, the `` element. The `` element has no children, but it does have contents (the text "name").