Quellcode durchsuchen

allow formatting and aside tags

The group description was escaping everything by default meaning that the aside tag (which is quite useful) can't be used in a group header. This addresses that by no longer escaping the content, as is consistent with the rest of the library.
Tim vor 7 Jahren
Ursprung
Commit
5f8c5b505c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/resources/views/documentarian.blade.php

+ 1 - 1
src/resources/views/documentarian.blade.php

@@ -7,7 +7,7 @@
 
 @foreach($parsedRoutes as $group => $routes)
 @if($group)
-#{{$group}}
+#{!! $group !!}
 @endif
 @foreach($routes as $parsedRoute)
 @if($writeCompareFile === true)