NHSLeadership / nightingale-wp

Other
1 stars 0 forks source link

Lists #32

Closed Android63 closed 6 years ago

Android63 commented 7 years ago

The ordered and unordered kind

screen shot 2017-08-11 at 15 55 49
penpadstudio commented 7 years ago

Latest visual reference for lists.

screen shot 2017-08-17 at 13 02 08
Android63 commented 6 years ago

Lists work fine with the tiny exception that WordPress adds <p> tags around some HTML items added using the page/post editor, which results in extra space between list items as shown below:

screen shot 2017-09-18 at 14 24 48

I could disable this but it would make WordPress behave in a non-standard way.

What do you think @cehwitham?

Android63 commented 6 years ago

I can disable it with:

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
Android63 commented 6 years ago

False alarm. The markup had some hidden characters or extra spaces, which was throwing WordPress off.