Forgejo::MarkupOption
Properties
Name |
Type |
Description |
Notes |
branch_path |
String |
The current branch path where the form gets posted in: body |
[optional] |
context |
String |
Context to render in: body |
[optional] |
file_path |
String |
File path for detecting extension in file mode in: body |
[optional] |
mode |
String |
Mode to render (comment, gfm, markdown, file) in: body |
[optional] |
text |
String |
Text markup to render in: body |
[optional] |
wiki |
Boolean |
Is it a wiki page ? in: body |
[optional] |
Example
require 'forgejo'
instance = Forgejo::MarkupOption.new(
branch_path: null,
context: null,
file_path: null,
mode: null,
text: null,
wiki: null
)