Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pushing dev live ALSO fixing embed issues #967

Merged
merged 4 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/config/config-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In addition to `config.php` ExpressionEngine has a number of other configuration

As a general rule, the values provided in those config files (located in `system/ee/ExpressionEngine/Config` folder) are good for most sites, however there might be cases where certain setup would need to override some of the values.

In order to do that, simply copy the corresponding file to `system/user/config` folder and change or add the values that are needed. There is no need to keep the full copy of config file, just keep the properties that need to be changed and remove the ones that you are fine with - the default values will be used for those.
In order to do that, simply copy the corresponding file to `system/user/config` folder and change or add the values that are needed.

[TOC=4]

Expand All @@ -33,15 +33,15 @@ This file contains an array of foreign characters for transliteration conversion

`valid_form_attributes.php`

A list of HTML attributes that are allowed to be passed via EE template tag parameters to the `form` tag when creating forms with `ee()->functions->form_declaration()`. Additionally, attributes prefixed with `data-` and `aria-` can be used.
A list of HTML attributes that are allowed to be passed via EE template tag parameters to the `form` tag when creating forms with `ee()->functions->form_declaration()`. Additionally, attributes prefixed with `data-` and `aria-` can be used without being specified in the config settings.

#### Allowed Mime Types

`mimes.php`

These are the mime types that are allowed to be uploaded using the upload class. For security reasons the list is kept as small as possible. If you need to upload types that are not in the list you can add them.
This file sets the mime types that are allowed to be uploaded using the upload class. For security reasons the list is kept as small as possible. The mimes.php file in your user/config folder will override the system mimes.php entirely. If you need to upload mime types that are not in the list you can add them. If you want to disallow a mime type that is allowed by default, you can remove it from your version of the mimes.php file.

The mime types are grouped by file type. You can add the allowed mime types directly or you can add new file types containing multiple mimes.
The mime types are grouped by file type. These file types make up the 'Allowed File Types' options in the [upload directory](control-panel/file-manager/upload-directories.md#allowed-file-types) settings. You can add new mimes to an existing file type or create a new file type and add to that. Your new file type will be included as an option in the file upload preferrence file types.

#### Reverse Proxy IP addresses

Expand Down
2 changes: 1 addition & 1 deletion scripts/embed-render.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ renderer.table = function(header, body) {

module.exports = function (text, info) {
currentPageInfo = info
let renderedContent = MarkedJs(text, { renderer: renderer })
let renderedContent = MarkedJs.parse(text, { renderer: renderer })

return renderedContent
}