You are here

class Typogrify in Typogrify 8

Same name in this branch
  1. 8 src/Typogrify.php \Drupal\typogrify\Typogrify
  2. 8 src/TwigExtension/Typogrify.php \Drupal\typogrify\TwigExtension\Typogrify

Class \Drupal\typogrify\Typogrify.

Hierarchy

Expanded class hierarchy of Typogrify

3 files declare their use of Typogrify
Typogrify.php in src/TwigExtension/Typogrify.php
TypogrifyClassTest.php in tests/src/Unit/TypogrifyClassTest.php
TypogrifyFilter.php in src/Plugin/Filter/TypogrifyFilter.php
1 string reference to 'Typogrify'
typogrify.info.yml in ./typogrify.info.yml
typogrify.info.yml

File

src/Typogrify.php, line 8

Namespace

Drupal\typogrify
View source
class Typogrify {

  /**
   * Enable custom styling of ampersands.
   *
   * Wraps apersands in html with '<span class="amp">', so they can be
   * styled with CSS. Ampersands are also normalized to '&amp;. Requires
   * ampersands to have whitespace or an '&nbsp;' on both sides.
   *
   * It won't mess up & that are already wrapped, in entities or URLs.
   *
   * @param string $text
   *   The text to work on.
   *
   * @return string
   *   The modified text.
   */
  public static function amp($text) {
    $amp_finder = "/(\\s|&nbsp;)(&|&amp;|&\\#38;|&#038;)(\\s|&nbsp;)/";
    return preg_replace($amp_finder, '\\1<span class="amp">&amp;</span>\\3', $text);
  }

  /**
   * Puts a &thinsp; before and after an &ndash or &mdash;.
   *
   * Dashes may have whitespace or an ``&nbsp;`` on both sides.
   *
   * @param string $text
   *   The text to work on.
   *
   * @return string
   *   The modified text.
   */
  public static function dash($text) {
    $dash_finder = "/(\\s|&nbsp;|&thinsp;)*(&mdash;|&ndash;|&#x2013;|&#8211;|&#x2014;|&#8212;)(\\s|&nbsp;|&thinsp;)*/";
    return preg_replace($dash_finder, '&thinsp;\\2&thinsp;', $text);
  }

  /**
   * Helper method for caps method - used for preg_replace_callback.
   */
  public static function capWrapper($matchobj) {
    if (!empty($matchobj[2])) {
      return sprintf('<span class="caps">%s</span>', $matchobj[2]);
    }
    else {
      $mthree = $matchobj[3];
      if ($mthree[strlen($mthree) - 1] == ' ') {
        $caps = substr($mthree, 0, -1);
        $tail = ' ';
      }
      else {
        $caps = $mthree;
        $tail = $matchobj[4];
      }
      return sprintf('<span class="caps">%s</span>%s', $caps, $tail);
    }
  }

  /**
   * Stylable capitals.
   *
   * Wraps multiple capital letters in ``<span class="caps">``
   * so they can be styled with CSS.
   *
   * Uses the smartypants tokenizer to not screw with HTML or with tags it
   * shouldn't.
   */
  public static function caps($text) {
    $tokens = SmartyPants::tokenizeHtml($text);
    $result = [];
    $in_skipped_tag = FALSE;
    $cap_finder = "/(\n      (\\b[[\\p{Lu}=\\d]*       # Group 2: Any amount of caps and digits\n      [[\\p{Lu}][[\\p{Lu}\\d]*  # A cap string much at least include two caps (but they can have digits between them)\n      (?:&amp;)?             # allowing ampersand in caps.\n      [[\\p{Lu}'\\d]*[[\\p{Lu}\\d]) # Any amount of caps and digits\n      | (\\b[[\\p{Lu}]+\\.\\s?   # OR: Group 3: Some caps, followed by a '.' and an optional space\n      (?:[[\\p{Lu}]+\\.\\s?)+)  # Followed by the same thing at least once more\n      (\\s|\\b|\$|[)}\\]>]))/xu";
    foreach ($tokens as $token) {
      if ($token[0] == 'tag') {

        // Don't mess with tags.
        $result[] = $token[1];
        $close_match = preg_match(SmartyPants::SMARTYPANTS_TAGS_TO_SKIP, $token[1]);
        if ($close_match) {
          $in_skipped_tag = TRUE;
        }
        else {
          $in_skipped_tag = FALSE;
        }
      }
      else {
        if ($in_skipped_tag) {
          $result[] = $token[1];
        }
        else {
          $result[] = preg_replace_callback($cap_finder, 'self::capWrapper', $token[1]);
        }
      }
    }
    return implode('', $result);
  }

  /**
   * Helper method for initialQuotes method - used for preg_replace_callback.
   */
  public static function quoteWrapper($matchobj) {
    if (!empty($matchobj[7])) {
      $classname = 'dquo';
      $quote = $matchobj[7];
    }
    else {
      $classname = 'quo';
      $quote = $matchobj[8];
    }
    return sprintf('%s<span class="%s">%s</span>', $matchobj[1], $classname, $quote);
  }

  /**
   * Initial quotes.
   *
   * Wraps initial quotes in ``class="dquo"`` for double quotes or
   * ``class="quo"`` for single quotes. Works in these block tags
   * ``(h1-h6, p, li)`` and also accounts for potential opening inline elements
   * ``a, em, strong, span, b, i``.
   * Optionally choose to apply quote span tags to Gullemets as well.
   *
   * @param string $text
   *   The text to work on.
   * @param bool $do_guillemets
   *   Optipnal. Whether to apply quote span tags to Gullemets.
   *
   * @return string
   *   The modified text.
   */
  public static function initialQuotes($text, $do_guillemets = FALSE) {
    $quote_finder = "/((<(p|h[1-6]|li)[^>]*>|^)                     # start with an opening p, h1-6, li or the start of the string\n                    \\s*                                             # optional white space!\n                    (<(a|em|span|strong|i|b)[^>]*>\\s*)*)            # optional opening inline tags, with more optional white space for each.\n                    ((\"|&ldquo;|&\\#8220;)|('|&lsquo;|&\\#8216;))    # Find me a quote! (only need to find the left quotes and the primes)\n                                                                    # double quotes are in group 7, singles in group 8\n                    /ix";
    if ($do_guillemets) {
      $quote_finder = "";
    }
    return preg_replace_callback($quote_finder, 'self::quoteWrapper', $text);
  }

  /**
   * Widont.
   *
   * Replaces the space between the last two words in a string with ``&nbsp;``
   * Works in these block tags ``(h1-h6, p, li)`` and also accounts for
   * potential closing inline elements ``a, em, strong, span, b, i``
   *
   * Empty HTMLs shouldn't error
   *
   * @param string $text
   *   The text to work on.
   *
   * @return string
   *   The modified text.
   */
  public static function widont($text) {

    // This regex is a beast, tread lightly.
    $widont_finder = "/([^<>\\s]+|<\\/span>)                    # ensure more than 1 word\n                      (\\s+)                                   # the space to replace\n                      ([^<>\\s]+                               # must be flollowed by non-tag non-space characters\n                      \\s*                                     # optional white space!\n                      (<\\/(a|em|span|strong|i|b)[^>]*>\\s*)*   # optional closing inline tags with optional white space after each\n                      ((<\\/(p|h[1-6]|li|dt|dd)>)|\$))          # end with a closing p, h1-6, li or the end of the string\n                      /x";
    return preg_replace($widont_finder, '$1&nbsp;$3', $text);
  }

  /**
   * Typogrify.
   *
   * The super typography filter.
   * Applies the following filters: widont, smartypants, caps, amp,
   * initialQuotes.
   * Optionally choose to apply quote span tags to Gullemets as well.
   *
   * @param string $text
   *   The text to work on.
   * @param bool $do_guillemets
   *   Optipnal. Whether to apply quote span tags to Gullemets.
   *
   * @return string
   *   The modified text.
   */
  public static function filter($text, $do_guillemets = FALSE) {
    $text = self::amp($text);
    $text = self::widont($text);
    $text = SmartyPants::process($text);
    $text = self::caps($text);
    $text = self::initialQuotes($text, $do_guillemets);
    $text = self::dash($text);
    return $text;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Typogrify::amp public static function Enable custom styling of ampersands.
Typogrify::caps public static function Stylable capitals.
Typogrify::capWrapper public static function Helper method for caps method - used for preg_replace_callback.
Typogrify::dash public static function Puts a &thinsp; before and after an &ndash or &mdash;.
Typogrify::filter public static function Typogrify.
Typogrify::initialQuotes public static function Initial quotes.
Typogrify::quoteWrapper public static function Helper method for initialQuotes method - used for preg_replace_callback.
Typogrify::widont public static function Widont.