format
This commit is contained in:
parent
7f12c6e4dc
commit
78043ecd29
|
|
@ -1723,7 +1723,7 @@ GitHub 官方也提供了一些 RSS:
|
|||
|
||||
- platform
|
||||
|
||||
| 桌面 | Android | Beta | Nightly | Android Beta | ESR |
|
||||
| 桌面 | Android | Beta | Nightly | Android Beta | ESR |
|
||||
| ------- | ------- | ---- | ------- | ------------ | ------------- |
|
||||
| desktop | android | beta | nightly | android-beta | organizations |
|
||||
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ Parameters:
|
|||
|
||||
- platform
|
||||
|
||||
| Desktop | Android | Beta | Nightly | Android Beta | ESR |
|
||||
| Desktop | Android | Beta | Nightly | Android Beta | ESR |
|
||||
| ------- | ------- | ---- | ------- | ------------ | ------------- |
|
||||
| desktop | android | beta | nightly | android-beta | organizations |
|
||||
|
||||
|
|
|
|||
|
|
@ -22,8 +22,14 @@ module.exports = async (ctx) => {
|
|||
.text()} release note`,
|
||||
link: `https://www.mozilla.org/en-US/firefox/${ctx.params.platform}/notes/`,
|
||||
description: $('.notes-section').html(),
|
||||
guid: $('.version').find('h2').text(),
|
||||
pubDate: new Date($('.version').find('p').text()).toUTCString(),
|
||||
guid: $('.version')
|
||||
.find('h2')
|
||||
.text(),
|
||||
pubDate: new Date(
|
||||
$('.version')
|
||||
.find('p')
|
||||
.text()
|
||||
).toUTCString(),
|
||||
},
|
||||
],
|
||||
description: $('.description').text(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue