mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-31 07:26:09 +00:00 
			
		
		
		
	Corrections tags
This commit is contained in:
		
							parent
							
								
									19b7d2ac63
								
							
						
					
					
						commit
						b24e55cfda
					
				
					 5 changed files with 19 additions and 11 deletions
				
			
		|  | @ -104,10 +104,10 @@ namespace AideDeJeu.ViewModels | ||||||
|                         enumerator.MoveNext(); |                         enumerator.MoveNext(); | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|  |                 currentItem.Id = GetNewAnchorId(source, currentItem.Name); | ||||||
|  |                 _AllItems[currentItem.Id] = currentItem; | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
|             currentItem.Id = GetNewAnchorId(source, currentItem.Name); |  | ||||||
|             _AllItems[currentItem.Id] = currentItem; |  | ||||||
|             return currentItem; |             return currentItem; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  | @ -183,7 +183,12 @@ namespace AideDeJeu.ViewModels | ||||||
|                 { |                 { | ||||||
|                     if (tag.StartsWith("<!--") && !tag.StartsWith("<!--/")) |                     if (tag.StartsWith("<!--") && !tag.StartsWith("<!--/")) | ||||||
|                     { |                     { | ||||||
|                         return true; |                         var name = $"AideDeJeuLib.{tag.Substring(4, tag.Length - 7)}, AideDeJeu"; | ||||||
|  |                         var type = Type.GetType(name); | ||||||
|  |                         if (type != null) | ||||||
|  |                         { | ||||||
|  |                             return true; | ||||||
|  |                         } | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|  | @ -219,8 +224,11 @@ namespace AideDeJeu.ViewModels | ||||||
|                     { |                     { | ||||||
|                         var name = $"AideDeJeuLib.{tag.Substring(4, tag.Length - 7)}, AideDeJeu"; |                         var name = $"AideDeJeuLib.{tag.Substring(4, tag.Length - 7)}, AideDeJeu"; | ||||||
|                         var type = Type.GetType(name); |                         var type = Type.GetType(name); | ||||||
|                         var instance = Activator.CreateInstance(type) as Item; |                         if (type != null) | ||||||
|                         return instance; |                         { | ||||||
|  |                             var instance = Activator.CreateInstance(type) as Item; | ||||||
|  |                             return instance; | ||||||
|  |                         } | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|  |  | ||||||
|  | @ -6,6 +6,6 @@ | ||||||
|     BackgroundColor="{StaticResource HDWhite}" |     BackgroundColor="{StaticResource HDWhite}" | ||||||
|     BarBackgroundColor="{StaticResource HDWhite}" |     BarBackgroundColor="{StaticResource HDWhite}" | ||||||
|     BarTextColor="{StaticResource HDRed}"> |     BarTextColor="{StaticResource HDRed}"> | ||||||
|      | 
 | ||||||
| 
 | 
 | ||||||
| </NavigationPage> | </NavigationPage> | ||||||
|  | @ -77,7 +77,7 @@ Votre étude exhaustive des différentes traditions et théories magiques vous p | ||||||
| 
 | 
 | ||||||
| <!--Generic--> | <!--Generic--> | ||||||
| 
 | 
 | ||||||
| Nombre de sorts de clercs connus | ### <!--Name-->Nombre de sorts de clercs connus<!--/Name--> | ||||||
| 
 | 
 | ||||||
| |Niveau|1|2|3|4|5|6|7|8|9| | |Niveau|1|2|3|4|5|6|7|8|9| | ||||||
| |---|---|---|---|---|---|---|---|---|---| | |---|---|---|---|---|---|---|---|---|---| | ||||||
|  |  | ||||||
|  | @ -1,7 +1,7 @@ | ||||||
| 
 | 
 | ||||||
| <!--Generic--> | <!--Generic--> | ||||||
| 
 | 
 | ||||||
| # Félys | # <!--Name-->Félys<!--/Name--> | ||||||
| 
 | 
 | ||||||
| - Source: <!--Source-->(MDR p64)<!--/Source--> | - Source: <!--Source-->(MDR p64)<!--/Source--> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,8 +1,8 @@ | ||||||
| 
 | 
 | ||||||
| # Manuel des règles | # Manuel des règles | ||||||
| <!-- | 
 | ||||||
| ## [Création du personnage] | <!-- ## [Création du personnage] --> | ||||||
| --> | 
 | ||||||
| ## [Races](races_hd.md) | ## [Races](races_hd.md) | ||||||
| 
 | 
 | ||||||
| ## [Personnalité et Historique](personnality_background_hd.md) | ## [Personnalité et Historique](personnality_background_hd.md) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Yan Maniez
						Yan Maniez