preignition/program-user-docs
accessiblesurveys
  • TRAINING COURSE
    • Introduction
    • Session 1- Creating a new survey
    • Session 2- Adding accessibility options to a Form
    • Session 3- Translating a Form into different languages
    • Session 4- Sharing your survey using the Survey Editor
    • Session 5- Analysing your survey responses and exporting your survey data
  • TUTORIALS
    • Introduction to creating a new survey
    • Introduction editing a form
    • Introduction to testing a form
    • Introduction to publishing a form
    • Introduction to Easy Read
    • Introduction to Sign Language
    • Introduction to form logic
    • Introduction to the Customer Portal
  • GUIDANCE NOTES
    • Survey App
      • Creating a new survey
      • Form Editor
        • Structuring a form
        • Adding questions to a form
          • Text based questions
          • Choice based questions
          • Rating, Slider, Order and Range questions
          • Media based questions
          • Introduction to free text fields
        • Testing a form
        • Publishing a form
        • Introduction to form logic
        • Advanced form logic
        • Using tooltips
        • Using Markdown
        • Adding an accessibility menu
        • Form Behaviour
        • Image Library
        • Easy Read
        • Sign Language
        • Translate forms
        • Using import/ export to translate forms
        • Access rights for forms
        • Sharing options across multiple questions
      • Survey Editor
        • Editing a survey
        • Distributing your survey
        • Survey respondent accounts
        • Redirection after completing survey
        • Language settings for surveys
        • Creating alias survey links
        • Survey batches
        • Presenting surveys
        • Survey access rights
        • Survey terms- advanced
        • Publishing surveys
      • Analytics
        • Introduction to survey analytics
        • Exporting Survey Data
    • Customer Portal
      • Portal
        • Profile
        • Subscription
      • Team
      • My Profile
      • Users
      • Using labels
  • FAQ
    • Data privacy and security
      • Why and how do we collect data?
      • How do we protect data?
      • What is GDPR?
      • What rights do individuals have under GDPR?
      • What obligations do controllers have under GDPR?
      • What obligations do processors have under GDPR?
      • Where is data stored?
      • How can I ensure that my surveys GDPR compliant?
      • How to Write GDPR-proof Privacy Policy for your Surveys
    • What is the best image size, ratio and format?
    • How to use free text
      • Convenient Class for Accessible Surveys Free Text Field
      • CSS tokens available in Markdown Free Text
      • Web-components available in Markdown Free Text
      • Accessibility Modes
    • FAQ about the Form Editor
      • How do I resolve warnings when publishing a form?
      • How can I get feedback about my survey?
    • Guide to producing Accessible Surveys
      • Producing your survey in Plain Language or Easy to Read
      • Producing your survey in sign languages
    • FAQ about survey data and analytics
      • How do I ensure that the data in my CSV file is properly formatted?
  • Release Notes
    • Form Builder
      • import/export
      • Section Container
    • Process Builder
    • Reporting
    • Survey
  • API
    • survey
    • member
Powered by GitBook
On this page
  • Introduction
  • Step 1
  • Step 2
  • Step 3
  • Step 4
  • Step 5
  • Step 6
  1. GUIDANCE NOTES
  2. Survey App
  3. Form Editor

Using Markdown

This page provides an introduction to using Markdown to format free text feilds

PreviousUsing tooltipsNextAdding an accessibility menu

Last updated 1 year ago

Introduction

Markdown is a simple and easy-to-use markup language you can use to format virtually any document or webpage.

Markdown is available in 'free text' feilds on the platform, giving you lots of control over how a free text feild is rendered. You can format text and images and include tables and links and much more besides.

This page covers some basic ways you can use Markdown. If you want more information, is a free and open-source reference guide that explains how to use Markdown in more detail.

Step 1

When you are in a free text field you will be notified that 'Markdown is supported'.

The link will take you to the Markdown page on Wikipedia where you will see some common examples of using markdown

The 'preview' feature shows you how the feild will appear to respondents.

Step 2

This example shows how to create a heading

Rendered as follows:

Step 3

This example shows how to include a link

Rendered as follows:

Step 4

This example shows you how to include an image

Images should be added in the following way:

<img src="https://firebasestorage.googleapis.com/v0/b/ida-ta.appspot.com/o/organisationData%2Fillustration%2F_template%2F-NGHyehUbZduJNdSVzXF%2F-NGb1j8_-hOcgZ6AdBm3.png?alt=media&token=8cf02b92-ab35-41f2-9c5a-95a38d1b138c" width="100" height="100">

Section
Description

<img src=

Opening parenthesis

"https://firebasestorage.googleapis.com/v0/b/ida-ta.appspot.com/o/organisationData%2Fillustration%2F_template%2F-NGHyehUbZduJNdSVzXF%2F-NGb1j8_-hOcgZ6AdBm3.png?alt=media&token=8cf02b92-ab35-41f2-9c5a-95a38d1b138c"

The location on the web where the image is stored. A tip is to add the image to the "image library" (or the image library for ER, which opens when you choose a media from the ER menu), right click on the image once uploaded and then click "copy image address"

width="100" height="100"

This allows you to adjust the size of your image

>

Closing parenthesis

The image is rendered like this

Step 5

The following example shows how text can be put inside a coloured box

<div class="warning" style='padding:0.1em; background-color: #0073AE; color:#ffffff'>

<span>

<p style='margin-top:1em; text-align:center'>

<b>On the importance of sentence length</b></p>

<p style='margin-left:1em;'>

This sentence has five words. Here are five more words. Five-word sentences are fine. But several together bocome monotonous. Listen to what is happening. The writing is getting boring. The sound of it drones. It's like a stuck record. The ear demands some variety.

</p>

</div>

The box is rendered like this:

Step 6

\

That is a brief introduction to Markdown. For more information, refer to Their ' page covers most of what you need to know and other pages cover advanced user cases.

The Markdown Guide.
'basic syntax
The Markdown Guide