glensc / dokuwiki-plugin-pageredirect

Redirects page requests based on content
https://www.dokuwiki.org/plugin:pageredirect
19 stars 19 forks source link

Rewrited and compacted #37

Closed Rainbow-Spike closed 4 years ago

glensc commented 4 years ago

Please include purpose to the pull request. And a screenshot before and after?

Rainbow-Spike commented 4 years ago

margin: 1em; margin-left: auto; margin-right: auto; = margin: 1em auto;

https://developer.mozilla.org/en-US/docs/Web/CSS/margin It is a shorthand for margin-top, margin-right, margin-bottom, and margin-left.

Rainbow-Spike commented 4 years ago

background-position: 10px 50%; background-repeat: no-repeat; background-color: #B5E0FF; background-image: url(images/important_small.png); = background: #B5E0FF url(images/important_small.png) 10px 50% no-repeat;

https://developer.mozilla.org/en-US/docs/Web/CSS/background The property is a shorthand that sets the following properties in a single declaration: background-clip, background-color, background-image, background-origin, background-position, background-repeat, background-size, and background-attachment.

glensc commented 4 years ago

Have to close the PR if the purpose of the PR is not explained.