Skip to content

Kitchen Sink: Every Ghost Editor Element

A comprehensive demonstration of every Ghost editor element — headings, text formatting, images, code blocks, callouts, tables, and more.

FN 4 min read
Kitchen Sink: Every Ghost Editor Element

This post demonstrates every Ghost editor element styled by the Launchpad theme. Use it as a reference for how content renders in production.

Heading Level 1

The top-level heading. Typically used for the post title (which Ghost handles automatically), so you'll rarely use H1 inside content.

Heading Level 2

The primary section divider. Use H2 to break your content into major sections. Table of contents generators pick up H2 headings by default.

Heading Level 3

Subsections within an H2 block. Great for breaking down complex topics without cluttering the TOC.

Heading Level 4

Rarely needed, but available for deeply nested content structures.

Heading Level 5

Even more rare. Used for fine-grained organization in technical documentation.

Heading Level 6

The smallest heading. If you're using H6, consider restructuring your content.

Text Formatting

This paragraph demonstrates inline formatting options. You can use bold text for emphasis, italic text for subtle emphasis, bold italic for maximum emphasis, inline code for technical terms, hyperlinks for navigation, and strikethrough for corrections or deprecated information.

A second paragraph to show spacing between paragraphs. Good typography requires consistent, generous spacing between text blocks. The eye should flow naturally from one paragraph to the next without feeling cramped or lost.

Lists

Unordered List

  • First item in the list
  • Second item with more detail
    • Nested item one
    • Nested item two
      • Deeply nested item
  • Third item back at the top level
  • Fourth item to show list rhythm

Ordered List

  1. First step in the process
  2. Second step with substeps
    1. Substep A
    2. Substep B
    3. Substep C
  3. Third step continues the sequence
  4. Fourth step wraps it up

Blockquotes

A single-line blockquote. Perfect for highlighting a key insight or memorable quote from the article.
A multi-paragraph blockquote for longer quotations.

The second paragraph continues the thought. Notice how the styling maintains visual coherence across multiple blocks within the quote.

Table

FeatureFreeProEnterpriseStatus
API Access1K/day100K/dayUnlimitedAvailable
Custom ModelsNo3 modelsUnlimitedAvailable
Team Members110UnlimitedAvailable
SLANone99.9%99.99%Available
SupportCommunityEmailDedicatedAvailable

Images

Standard Width Image

AI abstract visualization

Wide Image with Caption

Server room
NeuralFlow runs on a globally distributed infrastructure across three AWS regions.

Full Bleed Image

Data visualization globe

Code Blocks

JavaScript


// NeuralFlow Pipeline Configuration
const pipeline = new Pipeline({
  name: 'content-classifier',
  steps: [
    {
      name: 'preprocess',
      handler: async (input) => {
        const cleaned = sanitize(input.text);
        return { text: cleaned, tokens: tokenize(cleaned) };
      }
    },
    {
      name: 'classify',
      model: 'gpt-4',
      prompt: 'Classify the following text into categories',
    }
  ],
  output: { format: 'json', schema: ClassificationResult }
});

await pipeline.deploy({ env: 'production', replicas: 3 });

Python


from neuralflow import Pipeline, Step
from neuralflow.models import GPT4, CustomModel

class SentimentPipeline(Pipeline):
    def __init__(self):
        super().__init__(name="sentiment-v2")

        self.add_step(Step(
            name="analyze",
            model=GPT4(temperature=0.1),
            prompt="Analyze sentiment: {input}",
        ))

        self.add_step(Step(
            name="validate",
            model=CustomModel("sentiment-validator"),
            depends_on=["analyze"],
        ))

    def post_process(self, results):
        return {
            "sentiment": results["analyze"]["label"],
            "confidence": results["validate"]["score"],
        }

CSS


/* Launchpad Theme — Glass-morphism Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 35, 0.95);
}

Callout Cards

💡
Tip: Use environment variables for API keys. Never hardcode secrets in your pipeline configuration.
⚠️
Warning: API v2 endpoints will be deprecated on December 31, 2026. Migrate to v3 before then to avoid service disruption.
🚨
Important: Running pipelines with GPU models incurs additional charges. Monitor your usage dashboard to avoid unexpected costs.
Success: Your pipeline has been deployed to production. It typically takes 30-60 seconds for the first request to warm up.

Toggle/Accordion Cards

What models does NeuralFlow support?

NeuralFlow supports all major AI model providers including OpenAI (GPT-4, GPT-3.5), Anthropic (Claude), Meta (Llama), Mistral, and custom models via API endpoints or container deployment.

How does pricing work?

NeuralFlow charges a platform fee based on your plan (Free, Pro, Enterprise) plus model usage costs that are passed through at the provider's rate. There are no hidden markups on model costs.

Can I self-host NeuralFlow?

Yes! NeuralFlow's Pipeline Runner is open source and can run on your own infrastructure. The cloud platform adds managed scaling, monitoring, and team collaboration features on top.

Bookmark Card

Ghost: The Creator Economy Platform
The world's most popular modern publishing platform for creating a new media platform. Used by Apple, Tinder, the Sky News, and thousands more.

Horizontal Rule

Content before the rule.


Content after the rule. The horizontal rule creates a clear visual break between sections.

YouTube Embed

Button Card

Stay Updated

Get the latest news and product updates delivered to your inbox.

Episode 1: Getting Started
0:00
24:00

Pro Headphones

Premium wireless headphones with active noise cancellation, 40-hour battery life, and studio-quality audio.

Buy Now

That covers every Ghost editor element. If anything looks off, it's a theme styling issue — not a content problem. Check the Components page for the full design system reference.