- Updated markdown editor with modern toolbar design and improved visual hierarchy - Added auto-save indicator and note color support in editor header - Redesigned note list cards with hover effects and quick action buttons - Added version, build date and copyright info to about panel - Enhanced scrollbar styling and padding in editor container - Improved responsive layout and dark mode support across components
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| titre: "page test"
 | |
| auteur: "Bruno Charest"
 | |
| creation_date: "2025-10-26T13:57:39-04:00"
 | |
| modification_date: "2025-10-26T13:57:40-04:00"
 | |
| tags: [""]
 | |
| aliases: [""]
 | |
| status: "en-cours"
 | |
| publish: false
 | |
| favoris: false
 | |
| template: false
 | |
| task: false
 | |
| archive: false
 | |
| draft: false
 | |
| private: false
 | |
| color: "#22C55E"
 | |
| ---
 | |
| # Page de Test Markdown
 | |
| 
 | |
| ## Section 1
 | |
| 
 | |
| ### Sous-section 1.1
 | |
| 
 | |
| ## Section 2
 | |
| 
 | |
| ### Sous-section 2.1
 | |
| 
 | |
| ### Sous-section 2.2
 | |
| 
 | |
| ### Sous-section 2.3
 | |
| 
 | |
| # tableau:
 | |
| 
 | |
| | Colonne 1 | Colonne 2 | Colonne 3 |
 | |
| |---------|---------|---------|
 | |
| | Cellule 1 | Cellule 2 | Cellule 3 |
 | |
| | Cellule 4 | Cellule 5 | Cellule 6 |
 | |
| 
 | |
| # Liens
 | |
| 
 | |
| [lien](https://google.com)
 | |
| 
 | |
| # Liste
 | |
| 
 | |
| - item 1
 | |
| - item 2
 | |
| - item 3
 | |
| 
 | |
| # Liste à puces
 | |
| 
 | |
| - item 1
 | |
| - item 2
 | |
| - item 3
 | |
| 
 | |
| # Liste à numérotation
 | |
| 
 | |
| 1. item 1
 | |
| 2. item 2
 | |
| 3. item 3
 | |
| 
 | |
| # Bloc de code
 | |
| 
 | |
| ```javascript
 | |
| console.log('hello world');
 | |
| ```
 | |
| 
 | |
| # Bloc de citation
 | |
| 
 | |
| > citation
 | |
| 
 | |
| # Bloc de citation avec plusieurs lignes
 | |
| 
 | |
| > citation
 | |
| > avec plusieurs lignes
 | |
| 
 | |
| # Bloc de citation avec plusieurs lignes et bloc de code
 | |
| 
 | |
| > citation
 | |
| > avec plusieurs lignes
 | |
| 
 | |
| ```javascript
 | |
| console.log('hello world');
 | |
| ```
 |