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;
|
font-size: 0.857em;
|
||||||
unicode-bidi: embed;
|
unicode-bidi: embed;
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
white-space: pre-wrap;
|
white-space: initial;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
background-color: hsl(0, 0%, 100%);
|
background-color: hsl(0, 0%, 100%);
|
||||||
|
@ -304,6 +304,9 @@
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
line-height: 15px;
|
line-height: 15px;
|
||||||
|
code {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.code-section {
|
.code-section {
|
||||||
|
|
|
@ -17,8 +17,9 @@ below features are supported.
|
||||||
|
|
||||||
**Feature level 17**
|
**Feature level 17**
|
||||||
|
|
||||||
* [`GET users/me/subscriptions`](/api/get-subscribed-streams), [`GET /streams`]
|
* [`GET users/me/subscriptions`](/api/get-subscribed-streams),
|
||||||
(api/get-all-streams): Added `message_retention_days` to the Stream objects.
|
[`GET /streams`](api/get-all-streams): Added
|
||||||
|
`message_retention_days` to Stream objects.
|
||||||
* [`POST users/me/subscriptions`](/api/add-subscriptions), [`PATCH
|
* [`POST users/me/subscriptions`](/api/add-subscriptions), [`PATCH
|
||||||
streams/{stream_id}`](/api/update-stream): Added `message_retention_days`
|
streams/{stream_id}`](/api/update-stream): Added `message_retention_days`
|
||||||
parameter.
|
parameter.
|
||||||
|
|
Loading…
Reference in New Issue