Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 640 Bytes

changelog.md

File metadata and controls

31 lines (23 loc) · 640 Bytes

Change Log

All notable changes to this project will be documented in this file.

[0.0.2] - 2018-07-07

Added

  • Support for JSON-LD schema:

    $tags = new MetaTags;
    $tags->jsonld([
        '@context' => 'http://schema.org',
        '@type': 'Person',
        'name': 'Pedro Borges'
    ]);
  • Support for rendering one tag or a specific group of tags:

    <?php echo $tags->render('json-ld') ?>
    
    // or pass an array
    
    <?php echo $tags->render(['og', 'twitter']) ?>

Fixed

  • Tags with empty value being rendered with invalid markup.

[0.0.1] - 2017-02-28

Initial release