-
Notifications
You must be signed in to change notification settings - Fork 128
Open
Labels
Description
Would it be possible to highlight the parts in the code that are being focussed on in the section?
A few times there is a lot of code including styles around the one or two lines of code that is being talked about. For example, in Rendering with ternary -
{subtitle ? (
<h2 style={styles.subtitle}>{subtitle}</h2>
) : (
<h3 style={styles.empty}>No subtitle</h3>
)}
this is the part that should attract the reader's focus, but it blends in with 50 other lines of code.