You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2019/01/05 17:02:49 UTC

svn commit: r1850503 - /httpd/site/trunk/content/docs-project/svn.mdtext

Author: jailletc36
Date: Sat Jan  5 17:02:49 2019
New Revision: 1850503

URL: http://svn.apache.org/viewvc?rev=1850503&view=rev
Log:
Follow-up to r1850501.
Markdown syntax is not parsed within  block-level HTML tags.
So add a bit more of HTML.
This is not the spirit of Markdown, but I don't see another way to do it (except a CSS update which could impact other parts of the site)

Modified:
    httpd/site/trunk/content/docs-project/svn.mdtext

Modified: httpd/site/trunk/content/docs-project/svn.mdtext
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/docs-project/svn.mdtext?rev=1850503&r1=1850502&r2=1850503&view=diff
==============================================================================
--- httpd/site/trunk/content/docs-project/svn.mdtext (original)
+++ httpd/site/trunk/content/docs-project/svn.mdtext Sat Jan  5 17:02:49 2019
@@ -45,9 +45,9 @@ Once you have a checkout, creating a pat
 Update your checkout, to be sure that you have the latest changes in the
 repository, in case someone else has changed something since the last time
 you worked on the docs:
-<div class="example">
+<div class="example"><pre>
     svn update
-</div>
+</pre></div>
 
 1. 
 Edit the file that you wish to modify. Make the desired changes, and then
@@ -56,9 +56,9 @@ of your checkout.
 
 1. 
 At the command line, type the following to create a patch file:
-<div class="example">
+<div class="example"><pre>
     svn diff &gt; patch.txt
-</div>
+</pre></div>
 
 1. 
 Send email to the `docs@httpd.apache.org` mailing list and attach
@@ -66,9 +66,9 @@ Send email to the `docs@httpd.apache.org
 
 If you have more than one changed file, you can supply the file name on the
 `svn diff` command line, in order to just record the changes in one file.
-<div class="example">
+<div class="example"><pre>
     svn diff mod_rewrite.xml &gt; mod_rewrite_patch.txt
-</div>
+</pre></div>
 
 # See Also #