Merge pull request #285 from reuters-graphics/mf-docs-fixes

Docs fixes
This commit is contained in:
MinamiFunakoshiTR 2025-04-22 15:17:54 -05:00 committed by GitHub
commit 04754fcd8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 21 deletions

View file

@ -40,24 +40,20 @@ With the graphics kit, you'll likely get your text value from an ArchieML doc.
```yaml ```yaml
# Archie ML doc # Archie ML doc
[timeline] type: timeline
# Optional
# date object with events class: timeline
date: May 18 id: timeline-1
[.events] symbolColour: var(--theme-colour-brand-rules, grey)
title: Mariupol defenders surrender to Russia but their fate is uncertain dateColour: var(--theme-colour-accent, red)
context: More than 250 Ukrainian fighters surrendered to Russian forces at the Azovstal steelworks in Mariupol after weeks of desperate resistance, bringing an end to the most devastating siege of Russia's war in Ukraine and allowing President Vladimir Putin to claim a rare victory in his faltering campaign. [.dates]
titleLink: https://www.reuters.com/world/europe/ukrainian-troops-evacuate-mariupol-ceding-control-russia-2022-05-17/ # date object with events
date: May 10
# More events... [.events]
[] title: U.S. House passes $40 bln bill to bolster Ukraine against Russian invasion
context: The U.S. House of Representatives approved more than $40 billion more aid for Ukraine on Tuesday, as Congress races to keep military aid flowing and boost the government in Kyiv as it grapples with the Russian invasion.
date: May 10 titleLink: https://www.reuters.com/world/us-house-vote-40-billion-ukraine-aid-package-tuesday-pelosi-2022-05-10/
[.events] []
title: U.S. House passes $40 bln bill to bolster Ukraine against Russian invasion
context: The U.S. House of Representatives approved more than $40 billion more aid for Ukraine on Tuesday, as Congress races to keep military aid flowing and boost the government in Kyiv as it grapples with the Russian invasion.
titleLink: https://www.reuters.com/world/us-house-vote-40-billion-ukraine-aid-package-tuesday-pelosi-2022-05-10/
[]
# More dates and events... # More dates and events...
[] []
@ -72,7 +68,13 @@ titleLink: https://www.reuters.com/world/us-house-vote-40-billion-ukraine-aid-pa
import content from '$locales/en/content.json'; import content from '$locales/en/content.json';
</script> </script>
<EndNotes SimpleTimeline={content.timeline} /> <SimpleTimeline
dates={block.dates}
class={block.class}
symbolColour={block.symbolColour}
id={block.id}
dateColour={block.dateColour}
/>
``` ```
<Canvas of={SimpleTimelineStories.Demo} /> <Canvas of={SimpleTimelineStories.Demo} />

View file

@ -58,8 +58,8 @@ updated:
sectionUrl={content.sectionUrl} sectionUrl={content.sectionUrl}
hed={content.hed} hed={content.hed}
authors={content.authors.split(',')} authors={content.authors.split(',')}
publishTime={content.published} publishTime={content.publishTime}
updateTime={content.updated} updateTime={content.updatTime}
/> />
``` ```