Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete adjacent spaces in edition/edition pattern #1311

Merged

Commits on Jan 1, 2015

  1. Delete adjacent spaces in edition/edition pattern

    Replacing the prefix/suffix adjacent spaces with group and one delimiter space, as described generally in citation-style-language#1301 . Search for this pattern here (70 hits in 70 files):
    
    ```
    <[^/>]*"edition"[^/>]*suffix="[^"/>]* "[^/>]*/?>\s*\r\n\s*<[^/>]*"edition"[^/>]*prefix=" [^"/>]*"[^/>]*/?>
    ```
    
    Every occurence here looks actually the same:
    
    ```
              <group>
                <text variable="edition" suffix=" "/>
                <text term="edition" prefix=" "/>
              </group>
    ```
    which will then replaced by
    ```
              <group delimiter=" ">
                <text variable="edition"/>
                <text term="edition"/>
              </group>
    ```
    zuphilip committed Jan 1, 2015
    Configuration menu
    Copy the full SHA
    9296927 View commit details
    Browse the repository at this point in the history