Changed images to be in the image folder, and css to be in Content.
@ -14,6 +14,7 @@
|
|||||||
<TargetFrameworkProfile />
|
<TargetFrameworkProfile />
|
||||||
<NuGetPackageImportStamp>
|
<NuGetPackageImportStamp>
|
||||||
</NuGetPackageImportStamp>
|
</NuGetPackageImportStamp>
|
||||||
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
<PublishUrl>publish\</PublishUrl>
|
<PublishUrl>publish\</PublishUrl>
|
||||||
<Install>true</Install>
|
<Install>true</Install>
|
||||||
<InstallFrom>Disk</InstallFrom>
|
<InstallFrom>Disk</InstallFrom>
|
||||||
@ -26,7 +27,6 @@
|
|||||||
<MapFileExtensions>true</MapFileExtensions>
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
<ApplicationRevision>0</ApplicationRevision>
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
|
||||||
<UseApplicationTrust>false</UseApplicationTrust>
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -66,7 +66,7 @@ namespace Teknik.Areas.Blog
|
|||||||
"~/Areas/Blog/Scripts/Blog.js"));
|
"~/Areas/Blog/Scripts/Blog.js"));
|
||||||
// Register Style Bundles
|
// Register Style Bundles
|
||||||
BundleTable.Bundles.Add(new StyleBundle("~/Content/blog").Include(
|
BundleTable.Bundles.Add(new StyleBundle("~/Content/blog").Include(
|
||||||
"~/Scripts/mdd_styles.css",
|
"~/Content/mdd_styles.css",
|
||||||
"~/Areas/Blog/Content/Blog.css"));
|
"~/Areas/Blog/Content/Blog.css"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ div.mdd_modal
|
|||||||
z-index:1000;
|
z-index:1000;
|
||||||
display:none;
|
display:none;
|
||||||
font-size:10pt;
|
font-size:10pt;
|
||||||
background-image:url(mdd_modal_background.png);
|
background-image:url(../images/mdd_modal_background.png);
|
||||||
}
|
}
|
||||||
div.mdd_modal_frame
|
div.mdd_modal_frame
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ div.mdd_modal_content
|
|||||||
div.mdd_ajax_loader
|
div.mdd_ajax_loader
|
||||||
{
|
{
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
background-image: url(mdd_ajax_loader.gif);
|
background-image: url(../images/mdd_ajax_loader.gif);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
width:100%;
|
width:100%;
|
||||||
height:200px;
|
height:200px;
|
||||||
@ -122,7 +122,7 @@ div.mdd_toolbar li
|
|||||||
|
|
||||||
div.mdd_toolbar a.mdd_button
|
div.mdd_toolbar a.mdd_button
|
||||||
{
|
{
|
||||||
background-image:url(mdd_toolbar.png);
|
background-image:url(../images/mdd_toolbar.png);
|
||||||
width:20px;
|
width:20px;
|
||||||
height:20px;
|
height:20px;
|
||||||
display:block;
|
display:block;
|
||||||
@ -198,7 +198,7 @@ div.mdd_resizer_wrap
|
|||||||
div.mdd_resizer
|
div.mdd_resizer
|
||||||
{
|
{
|
||||||
background:#f8f8f8;
|
background:#f8f8f8;
|
||||||
background-image:url("mdd_gripper.png");
|
background-image:url("../images/mdd_gripper.png");
|
||||||
background-position:center center;
|
background-position:center center;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
padding-left:2px;
|
padding-left:2px;
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 150 B After Width: | Height: | Size: 150 B |
Before Width: | Height: | Size: 173 B After Width: | Height: | Size: 173 B |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
@ -1,166 +0,0 @@
|
|||||||
<h2>Markdown Formatting</h2>
|
|
||||||
<p><a href="http://daringfireball.net/projects/markdown/" target="_blank">Markdown</a> turns plain text formatting into fancy HTML formatting.</p>
|
|
||||||
<h3>Phrase Emphasis</h3>
|
|
||||||
<pre><code>*italic* **bold**
|
|
||||||
_italic_ __bold__
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Links</h3>
|
|
||||||
<p>Inline:</p>
|
|
||||||
<pre><code>An [example](http://url.com/ "Title")
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>Reference-style labels (titles are optional):</p>
|
|
||||||
<pre><code>An [example][id]. Then, anywhere
|
|
||||||
else in the doc, define the link:
|
|
||||||
|
|
||||||
[id]: http://example.com/ "Title"
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Images</h3>
|
|
||||||
<p>Inline (titles are optional):</p>
|
|
||||||
<pre><code>![alt text](/path/img.jpg "Title")
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>Reference-style:</p>
|
|
||||||
<pre><code>![alt text][id]
|
|
||||||
|
|
||||||
[id]: /url/to/img.jpg "Title"
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Headers</h3>
|
|
||||||
<p>Setext-style:</p>
|
|
||||||
<pre><code>Header 1
|
|
||||||
========
|
|
||||||
|
|
||||||
Header 2
|
|
||||||
--------
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>atx-style (closing #'s are optional):</p>
|
|
||||||
<pre><code># Header 1 #
|
|
||||||
|
|
||||||
## Header 2 ##
|
|
||||||
|
|
||||||
###### Header 6
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Lists</h3>
|
|
||||||
<p>Ordered, without paragraphs:</p>
|
|
||||||
<pre><code>1. Foo
|
|
||||||
2. Bar
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>Unordered, with paragraphs:</p>
|
|
||||||
<pre><code>* A list item.
|
|
||||||
|
|
||||||
With multiple paragraphs.
|
|
||||||
|
|
||||||
* Bar
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>You can nest them:</p>
|
|
||||||
<pre><code>* Abacus
|
|
||||||
* answer
|
|
||||||
* Bubbles
|
|
||||||
1. bunk
|
|
||||||
2. bupkis
|
|
||||||
* BELITTLER
|
|
||||||
3. burper
|
|
||||||
* Cunning
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Blockquotes</h3>
|
|
||||||
<pre><code>> Email-style angle brackets
|
|
||||||
> are used for blockquotes.
|
|
||||||
|
|
||||||
> > And, they can be nested.
|
|
||||||
|
|
||||||
> #### Headers in blockquotes
|
|
||||||
>
|
|
||||||
> * You can quote a list.
|
|
||||||
> * Etc.
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Code Spans</h3>
|
|
||||||
<pre><code>`<code>` spans are delimited
|
|
||||||
by backticks.
|
|
||||||
|
|
||||||
You can include literal backticks
|
|
||||||
like `` `this` ``.
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Preformatted Code Blocks</h3>
|
|
||||||
<p>Indent every line of a code block by at least 4 spaces or 1 tab.</p>
|
|
||||||
<pre><code>This is a normal paragraph.
|
|
||||||
|
|
||||||
This is a preformatted
|
|
||||||
code block.
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Horizontal Rules</h3>
|
|
||||||
<p>Three or more dashes or asterisks:</p>
|
|
||||||
<pre><code>---
|
|
||||||
|
|
||||||
* * *
|
|
||||||
|
|
||||||
- - - -
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Manual Line Breaks</h3>
|
|
||||||
<p>End a line with two or more spaces:</p>
|
|
||||||
<pre><code>Roses are red,
|
|
||||||
Violets are blue.
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h2>Extra Mode</h2>
|
|
||||||
|
|
||||||
These formatting features are only available when Extra Mode is enabled.
|
|
||||||
|
|
||||||
<h3>Markdown In Html</h3>
|
|
||||||
<p>Enable markdown in HTML block level elements:</p>
|
|
||||||
<pre><code><div markdown="1">
|
|
||||||
Markdown **still** works.
|
|
||||||
</div>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Fenced Code Blocks</h3>
|
|
||||||
<p>Code blocks delimited by 3 or more tildas:</p>
|
|
||||||
<pre><code>~~~
|
|
||||||
This is a preformatted
|
|
||||||
code block
|
|
||||||
~~~
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Header IDs</h3>
|
|
||||||
<p>Set the id of headings with <code>{#<id>}</code> at end of heading line:</p>
|
|
||||||
<pre><code>## My Heading {#myheading}
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Tables</h3>
|
|
||||||
|
|
||||||
<pre><code>Fruit |Color
|
|
||||||
---------|----------
|
|
||||||
Apples |Red
|
|
||||||
Pears |Green
|
|
||||||
Bananas |Yellow</code></pre>
|
|
||||||
<h3>Definition Lists</h3>
|
|
||||||
<pre><code>Term 1
|
|
||||||
: Definition 1
|
|
||||||
|
|
||||||
Term 2
|
|
||||||
: Definition 2</code></pre>
|
|
||||||
|
|
||||||
<h3>Footnotes</h3>
|
|
||||||
<pre><code>Body text with a footnote [^1]
|
|
||||||
|
|
||||||
[^1]: Footnote text here
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<h3>Abbreviations</h3>
|
|
||||||
<pre><code>MDD <- will have title
|
|
||||||
|
|
||||||
*[MDD]: MarkdownDeep
|
|
||||||
</code></pre>
|
|
||||||
<p> </p>
|
|
||||||
|
|
@ -594,12 +594,11 @@
|
|||||||
<Content Include="Scripts\MarkdownDeep License.txt" />
|
<Content Include="Scripts\MarkdownDeep License.txt" />
|
||||||
<Content Include="Scripts\MarkdownDeep Quick Reference.txt" />
|
<Content Include="Scripts\MarkdownDeep Quick Reference.txt" />
|
||||||
<Content Include="Scripts\MarkdownDeepLib.min.js" />
|
<Content Include="Scripts\MarkdownDeepLib.min.js" />
|
||||||
<Content Include="Scripts\mdd_ajax_loader.gif" />
|
<Content Include="Images\mdd_ajax_loader.gif" />
|
||||||
<Content Include="Scripts\mdd_gripper.png" />
|
<Content Include="Images\mdd_gripper.png" />
|
||||||
<Content Include="Scripts\mdd_help.htm" />
|
<Content Include="Images\mdd_modal_background.png" />
|
||||||
<Content Include="Scripts\mdd_modal_background.png" />
|
<Content Include="Content\mdd_styles.css" />
|
||||||
<Content Include="Scripts\mdd_styles.css" />
|
<Content Include="Images\mdd_toolbar.png" />
|
||||||
<Content Include="Scripts\mdd_toolbar.png" />
|
|
||||||
<Content Include="Scripts\modernizr-2.8.3.js" />
|
<Content Include="Scripts\modernizr-2.8.3.js" />
|
||||||
<Content Include="Scripts\ocupload\1.1.2\ocupload.js" />
|
<Content Include="Scripts\ocupload\1.1.2\ocupload.js" />
|
||||||
<Content Include="Scripts\PageDown\Markdown.Converter.js" />
|
<Content Include="Scripts\PageDown\Markdown.Converter.js" />
|
||||||
|