Skip to Main Content
Community Plug-ins
Getting Started
All Plug-ins [31]
Utilities
Client-side Condition
Context Menu
Date Picker Eraser
Download File(s) Process
Download File(s) DA
Drag and Drop
Execute PL/SQL Code
IR Column Grouping
List Extension
Message Actions
Nested Reports
Notifications
Popup LOV Actions
Redirect URL
Spinner Actions
Text Snippet Expand
Timing Actions
Trigger Event(s)
Tooltip
Interactive Grid
Add Button
Process Rows
Regions
Image Slider
PL/SQL Dynamic Content
Splitter
Static Content
Reactive Markdown
Items
Advanced Password
AutoNumeric
CKEditor4
Date Range Picker
Progress Bar
Range Slider
All Plug-ins
Region Plug-ins
UC - Reactive Markdown
Breadcrumb
Basic features
Reactivity
Themes
Input
Input
# h1 Heading ## h2 Heading ### h3 Heading #### h4 Heading ##### h5 Heading ###### h6 Heading ## Horizontal Rules --- ___ *** ## Emphasis **This is bold text** __This is bold text__ *This is italic text* _This is italic text_ ~~Strikethrough~~ ## Blockquotes > Blockquotes can also be nested... >> ...by using additional greater-than signs right next to each other... > > > ...or with spaces between arrows. ## Lists Unordered + Create a list by starting a line with `+`, `-`, or `*` + Sub-lists are made by indenting 2 spaces: - Marker character change forces new list start: * Ac tristique libero volutpat at + Facilisis in pretium nisl aliquet - Nulla volutpat aliquam velit + Very easy! Ordered 1. Lorem ipsum dolor sit amet 2. Consectetur adipiscing elit 3. Integer molestie lorem at massa ...or keep all the numbers as 1. 1. You can use sequential numbers... 1. while keepingg numbers as 1 Start numbering with offset: 57. foo 1. bar ## Code Inline `code` Indented code // Some comments line 1 of code line 2 of code line 3 of code Block code "fences" ``` Sample text here... ``` Syntax highlighting ``` js var foo = function (bar) { return bar++; }; console.log(foo(5)); ``` ## Tables | Option | Description | | ------ | ----------- | | data | path to data files to supply the data that will be passed into templates. | | engine | engine to be used for processing templates. Handlebars is the default. | | ext | extension to be used for dest files. | Right aligned columns | Option | Description | | ------:| -----------:| | data | path to data files to supply the data that will be passed into templates. | | engine | engine to be used for processing templates. Handlebars is the default. | | ext | extension to be used for dest files. | ## Links [link text](https://united-codes.com) [Check out united codes](https://united-codes.com "We are a cool company!") Autoconverted link https://zerodevx.github.io/zero-md/ ## Images 
Output
Reactivity
Change these inputs
Name
Age
City
Berlin
London
Nairobi
New York
Rio de Janeiro
Tokio
See the text change
Themes
GitHub Light
GitHub Dark
APEX - Universal Theme
Source Markdown
Theme section markdown
# Style Preview H1 ## Subheading H2 This is a standard paragraph with **bold text**, *italicized text*, `inline code`, and a ~strikethrough~ example. It also includes a [sample link](https://www.example.com "Link Title"). > This is a blockquote. It spans multiple lines to show wrapping. > "The only true wisdom is in knowing you know nothing." — Socrates --- ### List Examples H3 * Unordered list item 1 * Unordered list item 2 * Nested item * Unordered list item 3 1. Ordered list item 1 2. Ordered list item 2 1. Nested ordered item 3. Ordered list item 3 - [x] Task list item completed - [ ] Task list item pending --- #### Code Block Example H4 ```sql SELECT employee_id, first_name, last_name, salary FROM employees WHERE salary > 50000; ``` ##### Table Example H5 | Header 1 | Header 2 | Header 3 | | :---------- | :------: | --------------: | | Data Row 1A Long | Data 1B | Data 1C | | Data Row 2A | Data 2B Long | Long Data 2C | | Data Row 3A | Data 3B | Data 3C | ###### Mathematics Example H6 $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$ ###### Alerts > [!NOTE] > This is a note. It's often used for general information, > something to remember, or a side point. > > You can also include multiple paragraphs within a note > as long as each line starts with `>`. > [!TIP] > This is a tip! Remember to commit your changes frequently > to avoid losing your work. > > **Pro-tip:** Use `git status` often to stay aware of your > repository's state. > [!IMPORTANT] > This is an important piece of information. > > Please ensure you have backed up your database before > proceeding with any major schema changes. > [!WARNING] > This is a warning! > > Deleting this file will permanently remove user > configuration settings. Proceed with caution. > [!CAUTION] > This is a caution! > > Running this script without administrator privileges could > lead to system instability and data corruption.