]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
src/script/ceph-release-notes: replace breaklink w span 43212/head
authorDavid Galloway <dgallowa@redhat.com>
Fri, 17 Sep 2021 17:47:29 +0000 (13:47 -0400)
committerDavid Galloway <dgallowa@redhat.com>
Fri, 17 Sep 2021 17:47:29 +0000 (13:47 -0400)
Not sure why but the <!-- breaklink > was getting rendered as plaintext.

Putting <span></span> breaks the auto hyperlinking.

Signed-off-by: David Galloway <dgallowa@redhat.com>
src/script/ceph-release-notes

index 12738a17fd8b01a11468a0109ef0da48de819d6b..0d6024581aec3b23a74cc88f8c6674e14aab1ec7 100755 (executable)
@@ -289,7 +289,7 @@ def make_release_notes(gh, repo, ref, plaintext, html, markdown, verbose, strict
                 )
             )
         elif markdown:
-            markdown_title = title.replace('_', '\_').replace('.', '<!-- breaklink >.')
+            markdown_title = title.replace('_', '\_').replace('.', '<span></span>.')
             print ("- {title} ({issues}[pr#{pr}](https://github.com/ceph/ceph/pull/{pr}), {author})\n".format(
                     title=markdown_title,
                     issues=issues,