Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  1. Fotoware Alto
    • 11.14 Schreckhorn
    • Terminology
    • Solutions
    • User Guide - Deutsch
    • User Guide - English
    • API Changelog
  2. Fotoware Veloz
    • Managing users and groups
    • Configuring archives
    • Configuring workflows
    • Configuring site behavior
    • Navigating and searching to find your assets
    • Working with your assets
    • Editing asset metadata
    • Uploading files
    • Version Control in Fotoware
    • Albums - Creating and sharing collections
    • Placing assets in a CMS
    • Working with the Fotoware Pro interface
    • Using the Fotoware plugins
    • Consent management
    • User guide to FotoWeb for iPad (Legacy)
    • Picture conferencing with FotoWeb Screens (Legacy)
    • What's what in Fotoware
    • GDPR
    • Fotoware Veloz releases
    • Activity Exports
    • Fotoware Example Workflows
  3. Fotostation
    • Getting started with Fotostation
    • Viewing, selecting and sorting files
    • Managing your assets with archives
    • Adding metadata to assets
    • Searching for assets
    • Working with your assets
    • Version Control in Fotostation
    • Automating tasks with Actions
    • Configuring metadata fields and editors
    • Configuring Fotostation
    • Configuring Fotostation for multi-user environments
    • Troubleshooting Fotostation
  4. Fotoware Flow
    • What is Flow?
    • Getting started
    • Flow dictionary
  5. Fotoware On-Premises
    • Getting started
    • Index Manager
    • FotoWeb
    • Color Factory
    • Connect
    • Operations Center Guide
  6. Integrations and APIs
    • The Fotoware API
    • Creating integrations using embeddable widgets
    • Authorizing applications using OAuth
    • Auto-tagging
    • FotoWeb Drag and Drop export
    • Integration using webhooks
    • Optimizely and Episerver plugin documentation
    • User Interface Integrations
  7. Fotoware Mobile
    • User guide for Fotoware Mobile for iPhone and Android
    • User guide to FotoWeb for iPad (Legacy)
    • User guide to FotoWeb for iPhone and Android (Legacy)

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Support

Table of Contents

Headings BOLD Italic Blockquote Lists Images & Links
  • Home
  • Fotoware Alto
  • 11.14 Schreckhorn
  • Appendix

Markdown

02. March 2025

Elaine Foley

Table of Contents

Headings BOLD Italic Blockquote Lists Images & Links

Text fields in Picturepark have an additional option to render Markdown, a well-known syntax supported by various systems. Using Markdown in text fields allows basic formatting of descriptions, press kit content, or product descriptions to highlight specific areas or structure longer text areas. 

Picturepark uses the following component: https://markdown-it.github.io, which offers an online demo. Please ensure that all plugins (checkboxes at the top) are disabled, as Picturepark does not currently support any plugins.

  • only available in text fields
  • can be disabled anytime in the text field settings
  • only renders in Picturepark detail item view
 

Find an online demo tool here: https://markdown-it.github.io/. Make sure you uncheck all plugins at the top e.g. linkify.

Additional help here: https://www.markdownguide.org/basic-syntax/

 
Markdown HTML Rendered Output

Headings

   
# Heading level 1 <h1>Heading level 1</h1> Heading level 1
## Heading level 2 <h2>Heading level 2</h2> Heading level 2
### Heading level 3 <h3>Heading level 3</h3> Heading level 3
#### Heading level 4 <h4>Heading level 4</h4> Heading level 4
##### Heading level 5 <h5>Heading level 5</h5>
Heading level 5
###### Heading level 6 <h6>Heading level 6</h6>
Heading level 6

BOLD

   
I really love **bold text**. I really love <strong>bold text</strong>. I really love bold text.
I really do love __bold text__. I really do love <strong>bold text</strong>. I really do love bold text.
Love**is**bold Love<strong>is</strong>bold Loveisbold

Italic

   
Italicized text is the *cat's meow*. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
Italicized text is the _cat's meow_. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
A*cat*meow A<em>cat</em>meow Acatmeow
This text is ***really important***. This text is <strong><em>really important</em></strong>. This text is really important.
This text is ___really important___. This text is <strong><em>really important</em></strong>. This text is really important.
This text is __*really important*__. This text is <strong><em>really important</em></strong>. This text is really important.
This text is **_really important_**. This text is <strong><em>really important</em></strong>. This text is really important.
This is really***very***important text. This is really<strong><em>very</em></strong>important text. This is reallyveryimportant text.

Blockquote

   
> Dorothy followed her through many of the beautiful rooms in her castle.   This displays as blockquote.

> Dorothy followed her through many of the beautiful rooms in her castle.

>

> Dorothy followed her through many of the beautiful rooms in her castle.

  This displays as blockquote with multiple paragraphs.

Lists

   
  • First item
  • Second item
  • Third item
  • Fourth item
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ol>
  • First item
  • Second item
  • Third item
  • Fourth item

First item

  • Second item
  • Third item
  • Fourth item
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ul>
  • First item
  • Second item
  • Third item
  • Fourth item
+ First item
+ Second item
+ Third item
+ Fourth item
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<li>Fourth item</li>
</ul>
  • First item
  • Second item
  • Third item
  • Fourth item

Images & Links

   
![Tux, the Linux mascot](/assets/images/tux.png)   Place images with a link to the file.
My favorite search engine is [Duck Duck Go](https://duckduckgo.com).   Place links inside text.
At the command prompt, type `nano`. At the command prompt, type <code>nano</code>. At the command prompt, type nano.

<https://www.markdownguide.org>

<fake@example.com>

  To quickly turn a URL or email address into a link, enclose it in angle brackets.
✅ Do this ❌ Don't do this
# Here's a Heading #Here's a Heading
Love**is**bold Love__is__bold
A*cat*meow A_cat_meow
This is really***very***important text. This is really___very___

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • Appendix
  • Display Pattern Help
  • Fastly (CDN)
  • JSON
  • Keyboard Shortcuts
eco-lighthouse-miljøfyrtårn

Company

  • About us
  • Resellers
  • Careers
  • Contact us

Help & support

  • Support center
  • Consultancy
  • Tech partners
  • Fotostation
  • System status

Trust Center

  • Legal
  • Security
  • Sustainability & ESG

Locations

Fotoware AS (HQ)
Tollbugata 35
0157 OSLO
Norway
FotoWare Switzerland AG
Industriestrasse 25
5033 Buchs (AG)
Switzerland

Copyright 2025 Fotoware All rights reserved.

  • Terms of service
  • Privacy policy
  • Cookie policy

Knowledge Base Software powered by Helpjuice

Expand