Skip to content

Commit 600642b

Browse files
committed
GH does not seem to like inline HTML comments in MD
1 parent a18692d commit 600642b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Sample configuration can be found in the `tests/fixtures` folder for [YAML](http
5555
This bundle exposes an instance of the `Aws\Sdk` object as well as instances of
5656
each AWS client object as services to your symfony application. The services
5757
made available depends on which version of the SDK is installed. In version
58-
<!-- SDK VERSION -->3.2.0<!-- /SDK VERSION -->, the following services are made available:
58+
<span class="sdk-version">3.2.0</span>, the following services are made available:
5959

6060
<!-- BEGIN SERVICE TABLE -->
6161
Service | Instance Of

build/ReadMeUpdater.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ private function getAWSServices(Container $container)
8888

8989
private function replaceSdkVersionNumber($readMeText)
9090
{
91-
$start = '<!-- SDK VERSION -->';
91+
$start = '<span class="sdk-version">';
9292
$version = Sdk::VERSION;
93-
$end = '<!-- /SDK VERSION -->';
93+
$end = '</span>';
9494
$pattern = '/' . preg_quote($start, '/') . '[^<]*'
9595
. preg_quote($end, '/') . '/';
9696

0 commit comments

Comments
 (0)