You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Hervé Boutemy (JIRA)" <ji...@apache.org> on 2016/05/22 11:40:13 UTC

[jira] [Created] (MSKINS-130) improve generated html for menu and breadcrumbs

Hervé Boutemy created MSKINS-130:
------------------------------------

             Summary: improve generated html for menu and breadcrumbs
                 Key: MSKINS-130
                 URL: https://issues.apache.org/jira/browse/MSKINS-130
             Project: Maven Skins
          Issue Type: Improvement
          Components: Fluido Skin
    Affects Versions: fluido-1.5
            Reporter: Hervé Boutemy
            Assignee: Hervé Boutemy


currently, generated html is hard to understand:
{code:xml}      <div class="row-fluid">
        <div id="leftColumn" class="span2">
          <div class="well sidebar-nav">
              
                <ul class="nav nav-list">
                    <li class="nav-header">Main</li>
                              
      <li class="active">
  
            <a href="#"><span class="none"></span>Welcome</a>
          </li>
                
      <li>
  
                          <a href="https://www.apache.org/licenses/" class="externalLink" title="License">
          <span class="none"></span>
        License</a>
            </li>
                
      <li>
  
                          <a href="download.html" title="Download">
          <span class="none"></span>
        Download</a>
            </li>{code}
it would be really easier to work with if space was more consistent, to better show the structure of the html (we don't need perfectly indented html):
{code:xml}      <div class="row-fluid">
        <div id="leftColumn" class="span2">
          <div class="well sidebar-nav">
                <ul class="nav nav-list">
                    <li class="nav-header">Main</li>
      <li class="active"><a href="#"><span class="none">/span>Welcome</a></li>
      <li><a href="https://www.apache.org/licenses/" class="externalLink" title="License"><span class="none"></span>License</a></li>
      <li><a href="download.html" title="Download"><span class="none"></span>Download</a></li>{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)