- formatting fixes for very old changelog versions

Change-Id: I831f8dff8bf7bd3c4f919f368e521624b591feb8
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index 083158b..e15884c 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -1,3 +1,4 @@
+
 =========
 Changelog
 =========
@@ -1023,7 +1024,7 @@
         :tags:
         :tickets: 148
 
-      Fixed missing **extra collection in
+      Fixed missing \**extra collection in
       setup.py which prevented setup.py
       from running 2to3 on install.
 
@@ -1276,7 +1277,7 @@
       The <%page args> tag can now be used in a base
       inheriting template - the full set of render()
       arguments are passed down through the inherits
-      chain.  Undeclared arguments go into **pageargs
+      chain.  Undeclared arguments go into \**pageargs
       as usual.
 
     .. change::
@@ -1631,16 +1632,16 @@
 
       added "attr" accessor to namespaces. Returns
       attributes configured as module level attributes, i.e.
-      within <%! %> sections.  i.e.:
+      within <%! %> sections.  i.e.::
 
-      # somefile.html
-      <%!
-          foo = 27
-      %>
+        # somefile.html
+        <%!
+            foo = 27
+        %>
 
-      # some other template
-      <%namespace name="myns" file="somefile.html"/>
-      ${myns.attr.foo}
+        # some other template
+        <%namespace name="myns" file="somefile.html"/>
+        ${myns.attr.foo}
 
       The slight backwards incompatibility here is, you
       can't have namespace defs named "attr" since the
@@ -2034,7 +2035,7 @@
         :tickets:
 
       <%include> plus arguments is also programmatically available via
-      self.include_file(<filename>, **kwargs)
+      self.include_file(<filename>, \**kwargs)
 
     .. change::
         :tags: