Skip to content

onukura/gitbucket-csvtsv-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gitbucket-csvtsv-plugin

Build Status

A GitBucket plugin for rendering csv and tsv file.

Screenshot

screenshot

Install

  1. Download *.jar from Releases.
  2. Deploy it to GITBUCKET_HOME/plugins.
  3. Restart GitBucket.

Build from source

sbt clean package

The built package is located at target/scala-2.13/gitbucket-csvtsv-plugin_2.13-{plugin-version}.jar.

sbt assembly

This makes the assembly package target/scala-2.13/gitbucket-csvtsv-plugin-{plugin-version}.jar for deployment.

Supported type

Delimiter : ,, \t.
Quote : with quote ", without quote, mix.

Example

  • input

    "a",b,"c","de,f",ge"h
    1, 2, 3, 4, 5
    
  • output

    a b c de,f ge"h
    1 2 3 4 5

Note

Large (> about 512kb) files will not be rendered for browser performance.

Version

Plugin version GitBucket version
1.0.x 4.32.x -