Class: Kramdown::Element

Inherits:
Object show all
Defined in:
lib/kramdown-rfc2629.rb

Instance Method Summary collapse

Instance Method Details

#rfc2629_fixObject



55
56
57
58
59
60
61
62
63
64
# File 'lib/kramdown-rfc2629.rb', line 55

def rfc2629_fix
  if a = attr
    if anchor = a.delete('id')
      a['anchor'] = anchor
    end
    if anchor = a.delete('href')
      a['target'] = anchor
    end
  end
end