Skip to content

Commit

Permalink
Always use non-final end tags as Ruby Slippers tags
Browse files Browse the repository at this point in the history
  • Loading branch information
- committed Oct 4, 2012
1 parent 66a430f commit f10e532
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion r2/html/lib/Marpa/R2/HTML/Core_Grammar.pm
Expand Up @@ -14,7 +14,7 @@
# http://www.gnu.org/licenses/.

# This file was generated automatically by mk_core_grammar.pl
# The date of generation was Thu Oct 4 10:44:33 2012
# The date of generation was Thu Oct 4 10:47:57 2012

package Marpa::R2::HTML::Internal;

Expand Down
2 changes: 1 addition & 1 deletion r2/html/lib/Marpa/R2/HTML/dev/Core_Grammar.pm
Expand Up @@ -14,7 +14,7 @@
# http://www.gnu.org/licenses/.

# This file was generated automatically by mk_core_grammar.pl
# The date of generation was Thu Oct 4 10:44:33 2012
# The date of generation was Thu Oct 4 10:47:57 2012

package Marpa::R2::HTML::Internal;

Expand Down
10 changes: 5 additions & 5 deletions r2/html/lib/Marpa/R2/HTML/dev/mk_core_grammar.pl
Expand Up @@ -430,12 +430,12 @@ sub table_rubies {
}

my %rubies = (
S_html => ['!non_final_end'],
S_head => [qw( S_html !non_final_end)],
S_body => [qw( S_html S_head !non_final_end )],
S_html => [],
S_head => [qw( S_html )],
S_body => [qw( S_html S_head )],
CDATA => inline_rubies(),
PCDATA => inline_rubies(),
'!non_element' => ['!non_final_end'],
'!non_element' => [],
'!start_tag' => block_rubies(),
'!inline_start_tag' => inline_rubies(),
'!head_start_tag' => head_rubies(),
Expand All @@ -459,7 +459,7 @@ sub table_rubies {
S_tr => table_rubies( [qw( S_tbody )] ),
S_th => table_rubies( [qw( S_thead S_tbody S_tr )] ),
S_td => table_rubies( [qw( S_tbody S_tr )] ),
E_body => [qw( S_html S_head S_body !non_final_end )],
E_body => [qw( S_html S_head S_body )],
E_html => [qw( S_html S_head S_body !non_final_end E_body )],
EOF => [qw( S_html S_head S_body !non_final_end E_body E_html)]
);
Expand Down

0 comments on commit f10e532

Please sign in to comment.