Change the styling
authorCyperghost <olaf_schmitz_1@t-online.de>
Wed, 31 Jul 2024 06:47:52 +0000 (08:47 +0200)
committerCyperghost <olaf_schmitz_1@t-online.de>
Wed, 31 Jul 2024 06:47:52 +0000 (08:47 +0200)
docs/php/api/form_builder/form_fields.md

index d315becc59b530b37bed58bb931c10af6a8f8c58..73e5c4e7f0f853d1fadeb9a67f6a3a4f208ae49e 100644 (file)
@@ -535,7 +535,7 @@ __The field supports other settings:__
 - `context(array $context)` and `getContext()` can be used to set and get the context of the file processor.
 - `singleFileUpload($singleFileUpload = true)` and `isSingleFileUpload()` can be used to set and check if only one file can be uploaded.
 
-__Example:__
+Example:
 
 ```php
 FileProcessorFormField::create('exampleFileID')
@@ -545,12 +545,12 @@ FileProcessorFormField::create('exampleFileID')
   ->bigPreview()
 ```
 
-__Additional Buttons__
+#### Additional Buttons
 
 Additional buttons can be added with `addActionButton(string $actionName, string $title, string $template, string $application = 'wcf', ?IFontAwesomeIcon $icon = null)`.
 When this button is pressed, the `fileProcessorCustomAction` event is fired, which can be used via JavaScript to perform additional actions.
 
-__Example:__
+Example:
 
 ```ts
 document.getElementById('exampleFileID').parentElement.addEventListener('fileProcessorCustomAction', (event) => {