diff --git a/src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature b/src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature index a06eb7776..ad455fac6 100644 --- a/src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature +++ b/src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature @@ -1,7 +1,7 @@ Feature: Showing basic gherkin syntax - In order to see that gherkin is a very simple langauge - As a SpecFlow evangelist - I want to show that basic syntax + In order to see that gherkin is a very simple langauge + As a SpecFlow evangelist + I want to show that basic syntax ![Test Image](test.jpg) diff --git a/src/Pickles/Examples/Features/01TestRunner/TestRunnerIsNotImportant.feature b/src/Pickles/Examples/Features/01TestRunner/TestRunnerIsNotImportant.feature index 36f563aaf..bd3ef3aa4 100644 --- a/src/Pickles/Examples/Features/01TestRunner/TestRunnerIsNotImportant.feature +++ b/src/Pickles/Examples/Features/01TestRunner/TestRunnerIsNotImportant.feature @@ -1,7 +1,7 @@ Feature: The test runner is not (very) important - In order to show that the test runner is just for the autogenerated stuff in SpecFlow - As a SpecFlow evanglist - I want to be able to call my steps in the same manner inspite of the testrunner configured + In order to show that the test runner is just for the autogenerated stuff in SpecFlow + As a SpecFlow evanglist + I want to be able to call my steps in the same manner inspite of the testrunner configured Scenario: A couple of simple steps Given I have step defintions in place diff --git a/src/Pickles/Examples/Features/14MarkdownExample/MarkdownExamples.feature b/src/Pickles/Examples/Features/14MarkdownExample/MarkdownExamples.feature new file mode 100644 index 000000000..904c6d9b3 --- /dev/null +++ b/src/Pickles/Examples/Features/14MarkdownExample/MarkdownExamples.feature @@ -0,0 +1,65 @@ +Feature: Sample Markdown Feature + Header 1 + ======== + + Header 2 + -------- + + This is a *significant* word + + 1. Ordered #1 + 2. Ordered #2 + 3. Ordered #3 + + - Unordered #1 + - Unordered #2 + - Unordered #3 + + Horizontal Rule: + - - - + + Table example: + | First Header | Second Header | + | ------------- | ------------- | + | Content Cell | Content Cell | + | Content Cell | Content Cell | + + - - - + + Scenario: Sample Markdown Scenario Example + + This is **important** text + + Code Block: + ``` + var x = 2; + ``` + + Apple + : Pomaceous fruit of plants of the genus Malus in + the family Rosaceae. + : An American computer company. + + Orange + : The fruit of an evergreen tree of the genus Citrus. + + Given this + Then that + + @AddingATag + Scenario Outline: Sample Markdown Scenario Outline Example + + This is [an example link to pickles](https://github.com/picklesdoc/pickles/wiki "Pickles") inline link. + + [This link to pickles](https://github.com/picklesdoc/pickles/wiki) has no title attribute. + + Given this: + Then that: + + Examples: + + This __message__ is important too and is for an *Example* table. + + | test | test2 | + | value | value2 | + diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/Index.html b/src/Pickles/Pickles.BaseDhtmlFiles/Index.html index 172fafb5e..58f1b4612 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/Index.html +++ b/src/Pickles/Pickles.BaseDhtmlFiles/Index.html @@ -8,7 +8,7 @@ - + @@ -20,7 +20,7 @@ @@ -103,13 +105,14 @@

-
+

Background:

+
    @@ -125,18 +128,20 @@

    Background:

    - +

    +
    - +
      • Examples:
        +
      @@ -168,18 +173,20 @@

      - - - - - - - - - - - - + + + + + + + + + + + + + + "); - }; - - if (jQueryTmplVersion > 0) { - jQuery['tmpl']['tag']['ko_code'] = { - open: "__.push($1 || '');" - }; - jQuery['tmpl']['tag']['ko_with'] = { - open: "with($1) {", - close: "} " - }; - } - }; - - ko.jqueryTmplTemplateEngine.prototype = new ko.templateEngine(); - - // Use this one by default *only if jquery.tmpl is referenced* - var jqueryTmplTemplateEngineInstance = new ko.jqueryTmplTemplateEngine(); - if (jqueryTmplTemplateEngineInstance.jQueryTmplVersion > 0) - ko.setTemplateEngine(jqueryTmplTemplateEngineInstance); - - ko.exportSymbol('jqueryTmplTemplateEngine', ko.jqueryTmplTemplateEngine); -})(); -}); -})(window,document,navigator,window["jQuery"]); -})(); diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/js/knockout.mapping-latest.debug.js b/src/Pickles/Pickles.BaseDhtmlFiles/js/knockout.mapping-latest.debug.js deleted file mode 100644 index 529c9034e..000000000 --- a/src/Pickles/Pickles.BaseDhtmlFiles/js/knockout.mapping-latest.debug.js +++ /dev/null @@ -1,798 +0,0 @@ -/// Knockout Mapping plugin v2.3.4 -/// (c) 2012 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/ -/// License: MIT (http://www.opensource.org/licenses/mit-license.php) -(function (factory) { - // Module systems magic dance. - - if (typeof require === "function" && typeof exports === "object" && typeof module === "object") { - // CommonJS or Node: hard-coded dependency on "knockout" - factory(require("knockout"), exports); - } else if (typeof define === "function" && define["amd"]) { - // AMD anonymous module with hard-coded dependency on "knockout" - define(["knockout", "exports"], factory); - } else { - // - - + + + diff --git a/src/Pickles/Pickles/Resources/Pickles.BaseDhtmlFiles.zip b/src/Pickles/Pickles/Resources/Pickles.BaseDhtmlFiles.zip index 87fdcf606..cc920af05 100644 Binary files a/src/Pickles/Pickles/Resources/Pickles.BaseDhtmlFiles.zip and b/src/Pickles/Pickles/Resources/Pickles.BaseDhtmlFiles.zip differ