From edeebc4c61dbbffa4e5b21b92530efafdce247ae Mon Sep 17 00:00:00 2001 From: mine-cetinkaya-rundel Date: Sun, 9 Apr 2023 22:29:39 -0400 Subject: [PATCH] Visual editor reformat --- webscraping.qmd | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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").