diff --git a/LICENSE b/LICENSE index 651da02..86642be 100644 --- a/LICENSE +++ b/LICENSE @@ -1,30 +1,21 @@ -BSD License +MIT License -For FBMarkdown software +Copyright (c) 2004-present, Facebook, Inc. -Copyright (c) 2004-present, Facebook, Inc. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -* Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -* Neither the name Facebook nor the names of its contributors may be used to -endorse or promote products derived from this software without specific -prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/PATENTS b/PATENTS deleted file mode 100644 index 7478a2c..0000000 --- a/PATENTS +++ /dev/null @@ -1,33 +0,0 @@ -Additional Grant of Patent Rights Version 2 - -"Software" means the FBMarkdown software contributed by Facebook, Inc. - -Facebook, Inc. ("Facebook") hereby grants to each recipient of the Software -("you") a perpetual, worldwide, royalty-free, non-exclusive, irrevocable -(subject to the termination provision below) license under any Necessary -Claims, to make, have made, use, sell, offer to sell, import, and otherwise -transfer the Software. For avoidance of doubt, no license is granted under -Facebook’s rights in any patent claims that are infringed by (i) modifications -to the Software made by you or any third party or (ii) the Software in -combination with any software or other technology. - -The license granted hereunder will terminate, automatically and without notice, -if you (or any of your subsidiaries, corporate affiliates or agents) initiate -directly or indirectly, or take a direct financial interest in, any Patent -Assertion: (i) against Facebook or any of its subsidiaries or corporate -affiliates, (ii) against any party if such Patent Assertion arises in whole or -in part from any software, technology, product or service of Facebook or any of -its subsidiaries or corporate affiliates, or (iii) against any party relating -to the Software. Notwithstanding the foregoing, if Facebook or any of its -subsidiaries or corporate affiliates files a lawsuit alleging patent -infringement against you in the first instance, and you respond by filing a -patent infringement counterclaim in that lawsuit against that party that is -unrelated to the Software, the license granted hereunder will not terminate -under section (i) of this paragraph due to such counterclaim. - -A "Necessary Claim" is a claim of a patent owned by Facebook that is -necessarily infringed by the Software standing alone. - -A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, -or contributory infringement or inducement to infringe any patent, including a -cross-claim or counterclaim. diff --git a/README.md b/README.md index 82a0f2a..022761b 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,6 @@ The Hack and HHVM documentation uses most of these approaches; see: ## License -FBMarkdown is BSD-licensed. We also provide an additional patent grant. +FBMarkdown is MIT-licensed. FBMarkdown may contain third-party software; see [third\_party\_notices.txt](third_party_notices.txt) for details. diff --git a/composer.json b/composer.json index 3d846c2..420c805 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,7 @@ "name": "facebook/fbmarkdown", "description": "Markdown parser and renderer for Hack", "keywords": ["facebook", "hack", "markdown", "gfm"], + "license": "MIT", "require": { "hhvm/hhvm-autoload": "^1.5", "hhvm/hsl": "^1.1", diff --git a/src/ASTNode.php b/src/ASTNode.php index e310eac..b989781 100644 --- a/src/ASTNode.php +++ b/src/ASTNode.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/ParserContext.php b/src/ParserContext.php index 561202d..a3770c2 100644 --- a/src/ParserContext.php +++ b/src/ParserContext.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/ASCII_PUNCTUATION.php b/src/_Private/ASCII_PUNCTUATION.php index 5f8164f..c30e1a0 100644 --- a/src/_Private/ASCII_PUNCTUATION.php +++ b/src/_Private/ASCII_PUNCTUATION.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/consume_link_destination.php b/src/_Private/consume_link_destination.php index ddb955a..ce261e5 100644 --- a/src/_Private/consume_link_destination.php +++ b/src/_Private/consume_link_destination.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/consume_link_title.php b/src/_Private/consume_link_title.php index 6f93064..c2b4754 100644 --- a/src/_Private/consume_link_title.php +++ b/src/_Private/consume_link_title.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/decode_html_entity.php b/src/_Private/decode_html_entity.php index a44b441..96f5b9a 100644 --- a/src/_Private/decode_html_entity.php +++ b/src/_Private/decode_html_entity.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/get_html_entity_table.php b/src/_Private/get_html_entity_table.php index fd325db..1033781 100644 --- a/src/_Private/get_html_entity_table.php +++ b/src/_Private/get_html_entity_table.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/plain_text_to_html.php b/src/_Private/plain_text_to_html.php index 28a976e..80af0e1 100644 --- a/src/_Private/plain_text_to_html.php +++ b/src/_Private/plain_text_to_html.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/_Private/plain_text_to_html_attribute.php b/src/_Private/plain_text_to_html_attribute.php index a34153d..ea843e1 100644 --- a/src/_Private/plain_text_to_html_attribute.php +++ b/src/_Private/plain_text_to_html_attribute.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/BlankLine.php b/src/blocks/BlankLine.php index dd73e7b..6dff2b9 100644 --- a/src/blocks/BlankLine.php +++ b/src/blocks/BlankLine.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/Block.php b/src/blocks/Block.php index 67c7d76..7bbcb05 100644 --- a/src/blocks/Block.php +++ b/src/blocks/Block.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/BlockQuote.php b/src/blocks/BlockQuote.php index 438117d..7a2d8a4 100644 --- a/src/blocks/BlockQuote.php +++ b/src/blocks/BlockQuote.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/BlockSequence.php b/src/blocks/BlockSequence.php index 1f50c09..d3bc4d1 100644 --- a/src/blocks/BlockSequence.php +++ b/src/blocks/BlockSequence.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/CodeBlock.php b/src/blocks/CodeBlock.php index 53076f0..eb9fc38 100644 --- a/src/blocks/CodeBlock.php +++ b/src/blocks/CodeBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/ContainerBlock.php b/src/blocks/ContainerBlock.php index bf64b55..1ad7ce7 100644 --- a/src/blocks/ContainerBlock.php +++ b/src/blocks/ContainerBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/Document.php b/src/blocks/Document.php index 09e1fbc..74795ff 100644 --- a/src/blocks/Document.php +++ b/src/blocks/Document.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/FencedCodeBlock.php b/src/blocks/FencedCodeBlock.php index 24c11e0..9500545 100644 --- a/src/blocks/FencedCodeBlock.php +++ b/src/blocks/FencedCodeBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/HTMLBlock.php b/src/blocks/HTMLBlock.php index 2c25c14..008f6e2 100644 --- a/src/blocks/HTMLBlock.php +++ b/src/blocks/HTMLBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/Heading.php b/src/blocks/Heading.php index 25daaf9..ce37d98 100644 --- a/src/blocks/Heading.php +++ b/src/blocks/Heading.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/IndentedCodeBlock.php b/src/blocks/IndentedCodeBlock.php index cd349b3..88058f8 100644 --- a/src/blocks/IndentedCodeBlock.php +++ b/src/blocks/IndentedCodeBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/InlineSequenceBlock.php b/src/blocks/InlineSequenceBlock.php index cf9341a..b98e61b 100644 --- a/src/blocks/InlineSequenceBlock.php +++ b/src/blocks/InlineSequenceBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/LeafBlock.php b/src/blocks/LeafBlock.php index 7976cfa..9cb88f2 100644 --- a/src/blocks/LeafBlock.php +++ b/src/blocks/LeafBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/LinkReferenceDefinition.php b/src/blocks/LinkReferenceDefinition.php index ddc62b2..4b49427 100644 --- a/src/blocks/LinkReferenceDefinition.php +++ b/src/blocks/LinkReferenceDefinition.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/ListItem.php b/src/blocks/ListItem.php index e9fcc5b..c86b3b2 100644 --- a/src/blocks/ListItem.php +++ b/src/blocks/ListItem.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/ListOfItems.php b/src/blocks/ListOfItems.php index a4863fd..d7e43e1 100644 --- a/src/blocks/ListOfItems.php +++ b/src/blocks/ListOfItems.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/Paragraph.php b/src/blocks/Paragraph.php index 4d2fb2d..a574b4f 100644 --- a/src/blocks/Paragraph.php +++ b/src/blocks/Paragraph.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/TableExtension.php b/src/blocks/TableExtension.php index 5558452..59fe8fd 100644 --- a/src/blocks/TableExtension.php +++ b/src/blocks/TableExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/TaskListItemExtension.php b/src/blocks/TaskListItemExtension.php index 31d5da6..499e141 100644 --- a/src/blocks/TaskListItemExtension.php +++ b/src/blocks/TaskListItemExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/blocks/ThematicBreak.php b/src/blocks/ThematicBreak.php index ddf792a..c939f30 100644 --- a/src/blocks/ThematicBreak.php +++ b/src/blocks/ThematicBreak.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/AutoLink.php b/src/inlines/AutoLink.php index df5c7de..8b3e0aa 100644 --- a/src/inlines/AutoLink.php +++ b/src/inlines/AutoLink.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/AutoLinkExtension.php b/src/inlines/AutoLinkExtension.php index fc7e1be..dcd811e 100644 --- a/src/inlines/AutoLinkExtension.php +++ b/src/inlines/AutoLinkExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/BackslashEscape.php b/src/inlines/BackslashEscape.php index 0c07df7..592b262 100644 --- a/src/inlines/BackslashEscape.php +++ b/src/inlines/BackslashEscape.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/CodeSpan.php b/src/inlines/CodeSpan.php index ca3b774..cfb4aa0 100644 --- a/src/inlines/CodeSpan.php +++ b/src/inlines/CodeSpan.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/Context.php b/src/inlines/Context.php index fcdd56c..fd0c955 100644 --- a/src/inlines/Context.php +++ b/src/inlines/Context.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/Emphasis.php b/src/inlines/Emphasis.php index 305d97c..165dae2 100644 --- a/src/inlines/Emphasis.php +++ b/src/inlines/Emphasis.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/EntityReference.php b/src/inlines/EntityReference.php index a8fbae4..6c69977 100644 --- a/src/inlines/EntityReference.php +++ b/src/inlines/EntityReference.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/HardLineBreak.php b/src/inlines/HardLineBreak.php index 3abc536..1eb2f04 100644 --- a/src/inlines/HardLineBreak.php +++ b/src/inlines/HardLineBreak.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/Image.php b/src/inlines/Image.php index 748ae33..ddb5e37 100644 --- a/src/inlines/Image.php +++ b/src/inlines/Image.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/Inline.php b/src/inlines/Inline.php index 3a20067..5a0d875 100644 --- a/src/inlines/Inline.php +++ b/src/inlines/Inline.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/InlineSequence.php b/src/inlines/InlineSequence.php index ac718ec..657ceaf 100644 --- a/src/inlines/InlineSequence.php +++ b/src/inlines/InlineSequence.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/InlineWithPlainTextContent.php b/src/inlines/InlineWithPlainTextContent.php index a62fa4b..c2a9f44 100644 --- a/src/inlines/InlineWithPlainTextContent.php +++ b/src/inlines/InlineWithPlainTextContent.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/Link.php b/src/inlines/Link.php index 039c451..d204014 100644 --- a/src/inlines/Link.php +++ b/src/inlines/Link.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/RawHTML.php b/src/inlines/RawHTML.php index bca380e..2eddc36 100644 --- a/src/inlines/RawHTML.php +++ b/src/inlines/RawHTML.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/SoftLineBreak.php b/src/inlines/SoftLineBreak.php index ea63c37..49cf090 100644 --- a/src/inlines/SoftLineBreak.php +++ b/src/inlines/SoftLineBreak.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/StrikethroughExtension.php b/src/inlines/StrikethroughExtension.php index 661abc7..6c0c89d 100644 --- a/src/inlines/StrikethroughExtension.php +++ b/src/inlines/StrikethroughExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/TextualContent.php b/src/inlines/TextualContent.php index 9aaa853..95196fe 100644 --- a/src/inlines/TextualContent.php +++ b/src/inlines/TextualContent.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/_Private/EmphasisStack.php b/src/inlines/_Private/EmphasisStack.php index 31786b4..395fadd 100644 --- a/src/inlines/_Private/EmphasisStack.php +++ b/src/inlines/_Private/EmphasisStack.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/_Private/StrPos.php b/src/inlines/_Private/StrPos.php index bbed023..9d131cd 100644 --- a/src/inlines/_Private/StrPos.php +++ b/src/inlines/_Private/StrPos.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/_Private/parse_with_blacklist.php b/src/inlines/_Private/parse_with_blacklist.php index b4f7651..9d1abf9 100644 --- a/src/inlines/_Private/parse_with_blacklist.php +++ b/src/inlines/_Private/parse_with_blacklist.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/inlines/parse.php b/src/inlines/parse.php index 6aafa7e..f6e2324 100644 --- a/src/inlines/parse.php +++ b/src/inlines/parse.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/parse.php b/src/parse.php index 751285a..87a45d1 100644 --- a/src/parse.php +++ b/src/parse.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/HTMLRenderer.php b/src/render/HTMLRenderer.php index ba278c4..b4ff0a6 100644 --- a/src/render/HTMLRenderer.php +++ b/src/render/HTMLRenderer.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/MarkdownRenderer.php b/src/render/MarkdownRenderer.php index 3d5408a..eca253b 100644 --- a/src/render/MarkdownRenderer.php +++ b/src/render/MarkdownRenderer.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/RenderContext.php b/src/render/RenderContext.php index 9c54783..e367ec1 100644 --- a/src/render/RenderContext.php +++ b/src/render/RenderContext.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/RenderFilter.php b/src/render/RenderFilter.php index f2347f7..c2b9a96 100644 --- a/src/render/RenderFilter.php +++ b/src/render/RenderFilter.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/RenderableAsHTML.php b/src/render/RenderableAsHTML.php index 3107e2b..887f862 100644 --- a/src/render/RenderableAsHTML.php +++ b/src/render/RenderableAsHTML.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/Renderer.php b/src/render/Renderer.php index 22fd3b8..b71cf8b 100644 --- a/src/render/Renderer.php +++ b/src/render/Renderer.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/render/TagFilterExtension.php b/src/render/TagFilterExtension.php index 3e1f660..e2f5649 100644 --- a/src/render/TagFilterExtension.php +++ b/src/render/TagFilterExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/ATXHeading.php b/src/unparsed-blocks/ATXHeading.php index 80d0056..2b6e2b0 100644 --- a/src/unparsed-blocks/ATXHeading.php +++ b/src/unparsed-blocks/ATXHeading.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/BlankLine.php b/src/unparsed-blocks/BlankLine.php index af9051b..2966864 100644 --- a/src/unparsed-blocks/BlankLine.php +++ b/src/unparsed-blocks/BlankLine.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/Block.php b/src/unparsed-blocks/Block.php index 8140dce..a453aac 100644 --- a/src/unparsed-blocks/Block.php +++ b/src/unparsed-blocks/Block.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/BlockProducer.php b/src/unparsed-blocks/BlockProducer.php index d29622d..7d4af69 100644 --- a/src/unparsed-blocks/BlockProducer.php +++ b/src/unparsed-blocks/BlockProducer.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/BlockQuote.php b/src/unparsed-blocks/BlockQuote.php index e609282..ab556af 100644 --- a/src/unparsed-blocks/BlockQuote.php +++ b/src/unparsed-blocks/BlockQuote.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/BlockSequence.php b/src/unparsed-blocks/BlockSequence.php index a6d673e..dba5c31 100644 --- a/src/unparsed-blocks/BlockSequence.php +++ b/src/unparsed-blocks/BlockSequence.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/ContainerBlock.php b/src/unparsed-blocks/ContainerBlock.php index af0590c..fbff5a3 100644 --- a/src/unparsed-blocks/ContainerBlock.php +++ b/src/unparsed-blocks/ContainerBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/Context.php b/src/unparsed-blocks/Context.php index fa53bd6..d675c07 100644 --- a/src/unparsed-blocks/Context.php +++ b/src/unparsed-blocks/Context.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/Document.php b/src/unparsed-blocks/Document.php index b8ed96d..5f219d0 100644 --- a/src/unparsed-blocks/Document.php +++ b/src/unparsed-blocks/Document.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/FencedBlock.php b/src/unparsed-blocks/FencedBlock.php index 04241d0..83322c7 100644 --- a/src/unparsed-blocks/FencedBlock.php +++ b/src/unparsed-blocks/FencedBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/FencedCodeBlock.php b/src/unparsed-blocks/FencedCodeBlock.php index 7db9fef..e6aa779 100644 --- a/src/unparsed-blocks/FencedCodeBlock.php +++ b/src/unparsed-blocks/FencedCodeBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/HTMLBlock.php b/src/unparsed-blocks/HTMLBlock.php index 6af3ae5..23d9dbd 100644 --- a/src/unparsed-blocks/HTMLBlock.php +++ b/src/unparsed-blocks/HTMLBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/IndentedCodeBlock.php b/src/unparsed-blocks/IndentedCodeBlock.php index fc6ad48..b1c610b 100644 --- a/src/unparsed-blocks/IndentedCodeBlock.php +++ b/src/unparsed-blocks/IndentedCodeBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/InlineSequenceBlock.php b/src/unparsed-blocks/InlineSequenceBlock.php index 4e83e2d..f9c027c 100644 --- a/src/unparsed-blocks/InlineSequenceBlock.php +++ b/src/unparsed-blocks/InlineSequenceBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/LeafBlock.php b/src/unparsed-blocks/LeafBlock.php index d04e6cd..6cb6096 100644 --- a/src/unparsed-blocks/LeafBlock.php +++ b/src/unparsed-blocks/LeafBlock.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/Lines.php b/src/unparsed-blocks/Lines.php index 5f72f0a..ba2244e 100644 --- a/src/unparsed-blocks/Lines.php +++ b/src/unparsed-blocks/Lines.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/LinkReferenceDefinition.php b/src/unparsed-blocks/LinkReferenceDefinition.php index 9fd3ee0..425b952 100644 --- a/src/unparsed-blocks/LinkReferenceDefinition.php +++ b/src/unparsed-blocks/LinkReferenceDefinition.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/ListItem.php b/src/unparsed-blocks/ListItem.php index 9370c43..f975384 100644 --- a/src/unparsed-blocks/ListItem.php +++ b/src/unparsed-blocks/ListItem.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/ListOfItems.php b/src/unparsed-blocks/ListOfItems.php index 8a9fb79..5e8bcac 100644 --- a/src/unparsed-blocks/ListOfItems.php +++ b/src/unparsed-blocks/ListOfItems.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/Paragraph.php b/src/unparsed-blocks/Paragraph.php index 2ef6305..d646ac4 100644 --- a/src/unparsed-blocks/Paragraph.php +++ b/src/unparsed-blocks/Paragraph.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/SetextHeading.php b/src/unparsed-blocks/SetextHeading.php index 3733f08..431312b 100644 --- a/src/unparsed-blocks/SetextHeading.php +++ b/src/unparsed-blocks/SetextHeading.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/TableExtension.php b/src/unparsed-blocks/TableExtension.php index edf74d5..f4ab1cf 100644 --- a/src/unparsed-blocks/TableExtension.php +++ b/src/unparsed-blocks/TableExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/TaskListItemExtension.php b/src/unparsed-blocks/TaskListItemExtension.php index bdb5ea1..1f953b4 100644 --- a/src/unparsed-blocks/TaskListItemExtension.php +++ b/src/unparsed-blocks/TaskListItemExtension.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/ThematicBreak.php b/src/unparsed-blocks/ThematicBreak.php index 454941d..6d20f68 100644 --- a/src/unparsed-blocks/ThematicBreak.php +++ b/src/unparsed-blocks/ThematicBreak.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/_Private/is_paragraph_continuation_text.php b/src/unparsed-blocks/_Private/is_paragraph_continuation_text.php index 54a7e15..03b907b 100644 --- a/src/unparsed-blocks/_Private/is_paragraph_continuation_text.php +++ b/src/unparsed-blocks/_Private/is_paragraph_continuation_text.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/src/unparsed-blocks/parse.php b/src/unparsed-blocks/parse.php index ad99b7b..508dc6f 100644 --- a/src/unparsed-blocks/parse.php +++ b/src/unparsed-blocks/parse.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/tests/EdgeCaseTest.php b/tests/EdgeCaseTest.php index 7a2b24c..5a86d4c 100644 --- a/tests/EdgeCaseTest.php +++ b/tests/EdgeCaseTest.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/tests/SpecTest.php b/tests/SpecTest.php index ac85fcd..01a75af 100644 --- a/tests/SpecTest.php +++ b/tests/SpecTest.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */ diff --git a/tests/TestCase.php b/tests/TestCase.php index 9020707..82ee0c8 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -3,9 +3,8 @@ * Copyright (c) 2004-present, Facebook, Inc. * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. * */