mdless 2.1.17 → 2.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/mdless/string.rb +4 -4
 - data/lib/mdless/version.rb +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: f57c3bdcee76bfb347f88b0565c5ecd09c7879cc0ed3159d34c38a8ea1abc6cc
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: f7777ae04cad47bdf0b3a9e80737744264698d734ad6bfc4981cab8aaabfb7dd
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 2595a961ba59068748afc2f29790ae1f10d264dad6bc020d3dea33909f74e46924ea335a7fcfbbf02b465428168311a0c98613906a474a6e8c1ab1bdd8c4b1db
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: e8657acc663939813cf5302cbde4f32d8b4d94b2cbdd1988d1a3a809aa1d7ac1912d305221b392ea3ff18ca94464758d1b8cd6b757ea78a09548a26abdd10ded
         
     | 
    
        data/lib/mdless/string.rb
    CHANGED
    
    | 
         @@ -77,8 +77,8 @@ class ::String 
     | 
|
| 
       77 
77 
     | 
    
         
             
                        line = "#{color('metadata color')}#{line}<br>"
         
     | 
| 
       78 
78 
     | 
    
         
             
                      end
         
     | 
| 
       79 
79 
     | 
    
         | 
| 
       80 
     | 
    
         
            -
                      line += "\u00A0" * (longest - line.uncolor.strip.length)  
     | 
| 
       81 
     | 
    
         
            -
                      line
         
     | 
| 
      
 80 
     | 
    
         
            +
                      line += "\u00A0" * (longest - line.uncolor.strip.length) if (longest - line.uncolor.strip.length).positive?
         
     | 
| 
      
 81 
     | 
    
         
            +
                      line + xc
         
     | 
| 
       82 
82 
     | 
    
         
             
                    end.join("\n") + "#{xc}\n"
         
     | 
| 
       83 
83 
     | 
    
         
             
                  end
         
     | 
| 
       84 
84 
     | 
    
         
             
                end
         
     | 
| 
         @@ -93,8 +93,8 @@ class ::String 
     | 
|
| 
       93 
93 
     | 
    
         
             
                    longest = longest < @cols ? longest + 1 : @cols
         
     | 
| 
       94 
94 
     | 
    
         
             
                    lines.map do |line|
         
     | 
| 
       95 
95 
     | 
    
         
             
                      line.sub!(/^(.*?:)[ \t]+(\S)/, '\1 \2')
         
     | 
| 
       96 
     | 
    
         
            -
                      line = "#{color('metadata color')}#{line} 
     | 
| 
       97 
     | 
    
         
            -
                      line += "\u00A0" * (longest - line.uncolor.strip.length)
         
     | 
| 
      
 96 
     | 
    
         
            +
                      line = "#{color('metadata color')}#{line}"
         
     | 
| 
      
 97 
     | 
    
         
            +
                      line += "\u00A0" * (longest - line.uncolor.strip.length) if (longest - line.uncolor.strip.length).positive?
         
     | 
| 
       98 
98 
     | 
    
         
             
                      line + xc
         
     | 
| 
       99 
99 
     | 
    
         
             
                    end.join("\n") + "#{"\u00A0" * longest}#{xc}\n"
         
     | 
| 
       100 
100 
     | 
    
         
             
                  end
         
     | 
    
        data/lib/mdless/version.rb
    CHANGED