Merge pull request #157 from dchest/reflib Renaming of upskirt
Vytautas Ĺ altenis vytas@rtfb.lt
Tue, 24 Mar 2015 18:21:34 +0200
48 files changed,
5 insertions(+),
5 deletions(-)
jump to
M
README.md
→
README.md
@@ -10,7 +10,7 @@
HTML output is currently supported, along with Smartypants extensions. An experimental LaTeX output engine is also included. -It started as a translation from C of [upskirt][3]. +It started as a translation from C of [Sundown][3]. Installation@@ -97,7 +97,7 @@
Features -------- -All features of upskirt are supported, including: +All features of Sundown are supported, including: * **Compatibility**. The Markdown v1.0.3 test suite passes with the `--tidy` option. Without `--tidy`, the differences are@@ -243,4 +243,4 @@
[1]: http://daringfireball.net/projects/markdown/ "Markdown" [2]: http://golang.org/ "Go Language" - [3]: http://github.com/tanoku/upskirt "Upskirt" + [3]: https://github.com/vmg/sundown "Sundown"
M
upskirtref_test.go
→
ref_test.go
@@ -34,7 +34,7 @@ }
}() for _, basename := range files { - filename := filepath.Join("upskirtref", basename+".text") + filename := filepath.Join("testdata", basename+".text") inputBytes, err := ioutil.ReadFile(filename) if err != nil { t.Errorf("Couldn't open '%s', error: %v\n", filename, err)@@ -42,7 +42,7 @@ continue
} input := string(inputBytes) - filename = filepath.Join("upskirtref", basename+".html") + filename = filepath.Join("testdata", basename+".html") expectedBytes, err := ioutil.ReadFile(filename) if err != nil { t.Errorf("Couldn't open '%s', error: %v\n", filename, err)