src: rename old `markdown` module in `docdown` to avoid merge conflicts
authorAlexandre Terrasa <alexandre@moz-code.org>
Mon, 24 Nov 2014 22:25:02 +0000 (17:25 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Mon, 24 Nov 2014 22:25:02 +0000 (17:25 -0500)
The old markdown module will disappear in a further PR.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/doc/doc_model.nit
src/docdown.nit [moved from src/markdown.nit with 99% similarity]
src/test_docdown.nit
src/testing/testing_doc.nit

index 4141f75..0a0e60e 100644 (file)
@@ -16,7 +16,7 @@
 module doc_model
 
 import model_utils
-import markdown
+import docdown
 import doc_templates
 import ordered_tree
 import model_ext
similarity index 99%
rename from src/markdown.nit
rename to src/docdown.nit
index e254480..7df46fe 100644 (file)
@@ -13,7 +13,7 @@
 # limitations under the License.
 
 # Transform Nit verbatim documentation into HTML
-module markdown
+module docdown
 
 private import parser
 import html
index c546c2e..71a8669 100644 (file)
@@ -17,7 +17,7 @@ module test_docdown
 
 import modelize
 import highlight
-import markdown
+import docdown
 
 redef class ModelBuilder
        fun test_markdown(page: HTMLTag, mmodule: MModule)
index 7bb39ca..e612902 100644 (file)
@@ -16,7 +16,7 @@
 module testing_doc
 
 import testing_base
-intrude import markdown
+intrude import docdown
 
 # Extractor, Executor and Reporter for the tests in a module
 class NitUnitExecutor