33 lines
702 B
PHP
33 lines
702 B
PHP
<?php
|
|
|
|
namespace Automattic\WooCommerce\MonorepoTools\Changelogger;
|
|
|
|
use Automattic\Jetpack\Changelogger\FormatterPlugin;
|
|
|
|
/**
|
|
* Jetpack Changelogger Formatter for WooCommerce plugins
|
|
*/
|
|
|
|
require_once 'Formatter.php';
|
|
|
|
/**
|
|
* Jetpack Changelogger Formatter for WooCommerce Plugins
|
|
*
|
|
* Class Formatter
|
|
*/
|
|
class PluginFormatter extends Formatter implements FormatterPlugin {
|
|
/**
|
|
* Epilogue text.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $epilogue = "---\n\n[See changelogs for previous versions](https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt).";
|
|
|
|
/**
|
|
* Entry pattern regex.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $entry_pattern = '/^##?#\s+([^\n=]+)\s+((?:(?!^##).)+)/ms';
|
|
}
|