Preview Demo
Read-only preview with official UN document formatting, italicized phrases, and proper punctuation.
MUN Conference 2026
SC/S/RES/2026/001
Security Council
March 8, 2026
Authoring Delegation
France
This document was created as part of a Model United Nations simulation and has no legal validity.
This uses
ResolutionDocumentHeader component + custom contentSituation in the Middle East
The Security Council,
Recalling all its previous resolutions and presidential statements concerning the situation in the Middle East,,
Reaffirming its commitment to the sovereignty, territorial integrity and political independence of all States in the region,,
Expressing grave concern at the escalation of violence and the deteriorating humanitarian situation,,
Emphasizing the need for all parties to respect international humanitarian law and protect civilian populations,,
- 1. Demands an immediate cessation of hostilities by all parties to the conflict;;
- 2. Calls upon all parties to ensure:;
- (a) the protection of civilians in accordance with international humanitarian law;;
- (b) unhindered humanitarian access to all affected populations;;
- (c) the release of all unlawfully detained persons:;
- (i) including journalists and humanitarian workers;;
- (ii) with particular attention to vulnerable groups;;
- 3. Requests the Secretary-General to report to the Council within thirty days on the implementation of this resolution;;
- 4. Decides to remain actively seized of the matter..
Formatting Features
- Italic opening phrases
- Proper clause numbering (Roman, letters)
- Nested subclauses up to 4 levels
- UN document header format
- Conference emblem support
- Print-optimized styling
Extension Points
Use Svelte 5 snippets to customize the preview:
| Snippet | Location |
|---|---|
previewHeader | Top of preview |
previewFooter | Bottom of preview |
Usage Example
Use the reusable header/footer components in your snippets:
import {
ResolutionPreview,
ResolutionDocumentHeader,
ResolutionDocumentFooter
} from '@deutschemodelunitednations/munify-resolution-editor';
<ResolutionPreview
{resolution}
{preamblePatterns}
{operativePatterns}
>
{#snippet previewHeader({ resolution, headerData })}
<!-- Use the default header component -->
<ResolutionDocumentHeader {headerData} {resolution} />
<!-- Add custom content below -->
<div class="custom-banner">Draft Resolution</div>
{/snippet}
{#snippet previewFooter({ resolution })}
<ResolutionDocumentFooter {resolution} {headerData} />
{/snippet}
</ResolutionPreview>