mirror of https://github.com/zulip/zulip.git
api docs: Fix formatting in changelog.
The CSS changes prevent our API docs markdown processor from preserving line breaks within inline code block content.
This commit is contained in:
parent
d8ef853545
commit
9173f32a10
|
@ -296,7 +296,7 @@
|
|||
font-size: 0.857em;
|
||||
unicode-bidi: embed;
|
||||
direction: ltr;
|
||||
white-space: pre-wrap;
|
||||
white-space: initial;
|
||||
padding: 0px;
|
||||
padding-right: 4px;
|
||||
background-color: hsl(0, 0%, 100%);
|
||||
|
@ -304,6 +304,9 @@
|
|||
|
||||
pre {
|
||||
line-height: 15px;
|
||||
code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.code-section {
|
||||
|
|
|
@ -17,8 +17,9 @@ below features are supported.
|
|||
|
||||
**Feature level 17**
|
||||
|
||||
* [`GET users/me/subscriptions`](/api/get-subscribed-streams), [`GET /streams`]
|
||||
(api/get-all-streams): Added `message_retention_days` to the Stream objects.
|
||||
* [`GET users/me/subscriptions`](/api/get-subscribed-streams),
|
||||
[`GET /streams`](api/get-all-streams): Added
|
||||
`message_retention_days` to Stream objects.
|
||||
* [`POST users/me/subscriptions`](/api/add-subscriptions), [`PATCH
|
||||
streams/{stream_id}`](/api/update-stream): Added `message_retention_days`
|
||||
parameter.
|
||||
|
|
Loading…
Reference in New Issue