About
Ghost has a powerful visual editor with familiar formatting options, as well as the ability to seamlessly add dynamic content.
Under the hood the editor delivers power and flexibility, with the ability to quickly add content such as images, galleries, videos, embeds and code!
H1 default: sed risus pretium quam vulputate
H2 default: mauris vitae ultricies leo integer
H3 default: ac orci phasellus egestas tellus
H4 default: sed risus pretium quam vulputate
H5 default: ac orci phasellus egestas tellus
H6 default: mauris vitae ultricies leo integer
p default: sed risus pretium quam vulputate
Ordered List
- Ut at interdum nunc. Maecenas commodo turpis quis elementum gravida.
- Nunc ac sapien tellus. Quisque risus enim, tempus eget porttitor in.
- Donec nibh massa, rutrum a sollicitudin eu.
Unordered List
- Ut at interdum nunc. Maecenas commodo turpis quis elementum gravida.
- Nunc ac sapien tellus. Quisque risus enim, tempus eget porttitor.
- Donec nibh massa, rutrum a sollicitudin eu, lacinia in lorem.
Blockquote
Graphic design is the paradise of individuality, eccentricity, heresy, abnormality, hobbies, and humors. — George Santayana
Ghost comes with a beautiful default theme called Casper, which is designed to be a clean, readable publication layout and can be adapted for most purposes. However, Ghost can also be completely themed to suit your needs. Rather than just giving you a few basic settings which act as a poor proxy for code, we just let you write code.
Responsive Table
Heading | Heading | Heading | Heading | Heading | Heading |
---|---|---|---|---|---|
Cell | Cell | Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell | Cell | Cell |
'use strict';
var markdown = require('markdown').markdown;
function Editor(input, preview) {
this.update = function() {
preview.innerHTML = markdown.toHTML(input.value);
};
input.editor = this;
this.update();
}
pre {
background-color: #f4f4f4;
max-width: 100%;
overflow: auto;
}
public class TestClass
{
TestClass(string someArgument)
{
someArgument = "Hello World";
}
}