We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe14ca commit e675df1Copy full SHA for e675df1
src/Presentation/Markdown.php
@@ -17,8 +17,7 @@ public function getContents()
17
$contents = $this->contents;
18
$output = [];
19
foreach ($contents as $table => $properties) {
20
- $table = preg_replace('/[^A-Za-z0-9]/', ' ', $table);
21
- $output[] = '### '.Str::title($table).PHP_EOL.PHP_EOL;
+ $output[] = '### '.$table.PHP_EOL.PHP_EOL;
22
$output[] = '| Column | Type | Length | Default | Nullable | Comment |'.PHP_EOL;
23
$output[] = '|--------|------|--------|---------|----------|---------|'.PHP_EOL;
24
foreach ($properties as $key => $value) {
0 commit comments