Documentation - clean up white space

pull/9456/head
LB Johnston 2022-10-27 06:47:53 +10:00 zatwierdzone przez LB (Ben Johnston)
rodzic aaea8710c2
commit 28013470a7
3 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -93,7 +93,7 @@ INSTALLED_APPS = [
...
]
```
</details>
#### When using console (terminal) code blocks
@ -108,7 +108,7 @@ Use `sh` as it has better support for comment and code syntax highlighting in My
# some comment
some command
```
<details>
<summary>Rendered output</summary>

Wyświetl plik

@ -51,4 +51,4 @@ In various places Wagtail provides the option to export data in CSV format, and
Since the CSV format has no concept of formulae or macros, there is also no agreed-upon convention for escaping data to prevent it from being interpreted in that way; commonly-suggested approaches such as prefixing the field with a quote character would corrupt legitimate data (such as phone numbers beginning with '+') when interpreted by software correctly following the CSV specification.
Wagtail's data exports default to XLSX, which can be loaded into spreadsheet software without any such issues. This minimises the risk of a user handling CSV files insecurely, as they would have to explicitly choose CSV over the more familiar XLSX format.
Wagtail's data exports default to XLSX, which can be loaded into spreadsheet software without any such issues. This minimises the risk of a user handling CSV files insecurely, as they would have to explicitly choose CSV over the more familiar XLSX format.

Wyświetl plik

@ -61,10 +61,10 @@ The `log` function was added. Previously, logging was only implemented for pages
| Action | Notes |
| --------------------------------- | -------------------------------------------------------------------------------- |
| `wagtail.create` | The object was created |
| `wagtail.edit` | The object was edited (for pages, saved as a draft) |
| `wagtail.edit` | The object was edited (for pages, saved as a draft) |
| `wagtail.delete` | The object was deleted. Will only surface in the Site History for administrators |
| `wagtail.publish` | The page was published |
| `wagtail.publish.schedule` | The draft is scheduled for publishing |
| `wagtail.publish.schedule` | The draft is scheduled for publishing |
| `wagtail.publish.scheduled` | Draft published via `publish_scheduled` management command |
| `wagtail.schedule.cancel` | Draft scheduled for publishing cancelled via "Cancel scheduled publish" |
| `wagtail.unpublish` | The page was unpublished |
@ -78,13 +78,13 @@ The `log` function was added. Previously, logging was only implemented for pages
| `wagtail.copy` | The page was copied to a new location |
| `wagtail.copy_for_translation` | The page was copied into a new locale for translation |
| `wagtail.move` | The page was moved to a new location |
| `wagtail.reorder` | The order of the page under its parent was changed |
| `wagtail.reorder` | The order of the page under its parent was changed |
| `wagtail.view_restriction.create` | The page was restricted |
| `wagtail.view_restriction.edit` | The page restrictions were updated |
| `wagtail.view_restriction.delete` | The page restrictions were removed |
| `wagtail.workflow.start` | The page was submitted for moderation in a Workflow |
| `wagtail.workflow.approve` | The draft was approved at a Workflow Task |
| `wagtail.workflow.reject` | The draft was rejected, and changes were requested at a Workflow Task |
| `wagtail.workflow.reject` | The draft was rejected, and changes were requested at a Workflow Task |
| `wagtail.workflow.resume` | The draft was resubmitted to the workflow |
| `wagtail.workflow.cancel` | The workflow was cancelled |