From 7940082af661e723b2b9f1e8922856bb8a03e806 Mon Sep 17 00:00:00 2001 From: WooKyoung Noh Date: Mon, 9 Jul 2018 17:08:57 +0900 Subject: [PATCH] termtosvg table.svg --- README.md | 18 +++++------------- docs/src/assets/millboard/table.svg | 4 ++++ docs/src/index.md | 21 ++------------------- 3 files changed, 11 insertions(+), 32 deletions(-) create mode 100644 docs/src/assets/millboard/table.svg diff --git a/README.md b/README.md index 9c92aed..fdbc8f6 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,8 @@ julia> table(board, colnames=["x" "y" "z"], rownames=["A" "B"]) | B | 21 | 22 | 23 | ``` +![table.svg](https://wookay.github.io/docs/Millboard.jl/assets/millboard/table.svg) + * `Millboard.set_table_mode` : to change the display mode - `:markdown` (default) @@ -108,20 +110,10 @@ julia> table(board) # Install +`julia>` type `]` key + ```julia -λ ~$ julia - _ - _ _ _(_)_ | A fresh approach to technical computing - (_) | (_) (_) | Documentation: https://docs.julialang.org - _ _ _| |_ __ _ | Type "?help" for help. - | | | | | | |/ _` | | - | | |_| | | | (_| | | Version 0.6.0 (2017-06-19 13:05 UTC) - _/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release -|__/ | x86_64-apple-darwin13.4.0 - -julia> Pkg.add("Millboard") - -julia> Pkg.checkout("Millboard", "master") +(v0.7) pkg> add Millboard ``` diff --git a/docs/src/assets/millboard/table.svg b/docs/src/assets/millboard/table.svg new file mode 100644 index 0000000..8778592 --- /dev/null +++ b/docs/src/assets/millboard/table.svg @@ -0,0 +1,4 @@ + +                                                                                ~                                                                               ~ j                                                                             ~ ju                                                                            ~ jul                                                                           ~ juli                                                                          ~ julia                                                                          julia>                                                                          julia> u                                                                        julia> us                                                                       julia> usi                                                                      julia> usin                                                                     julia> using                                                                    julia> using                                                                    julia> using M                                                                  julia> using Mi                                                                 julia> using Mil                                                                julia> using Mill                                                               julia> using Millb                                                              julia> using Millbo                                                             julia> using Millboa                                                            julia> using Millboar                                                           julia> using Millboard                                                          julia> b                                                                        julia> board = [11 12 13; 21 22 23]                                             julia> board = [11 12 13; 21 22 23]                                             2×3    julia> t                                                                        julia> ta                                                                       julia> table(board)                                                             | |   | julia> tab                                                                      julia> tabl                                                                     julia> table                                                                    julia> table(board)                                                             julia> table(board, colnames=["x" "y" "z"], rownames=["A" "B"])                 ~ julia                                                                                        _   _       _ _(_)_     |  A fresh approach to technical computing  (_)     | (_) (_)    |  Documentation: https://docs.julialang.org   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.  | | | | | | |/ _` |  |  | | |_| | | | (_| |  |  Version 0.7.0-beta.206 (2018-07-08 19:42 UTC) _/ |\__'_|_|_|\__'_|  |  Commit b6f9244d6b (0 days old master)|__/                   |  x86_64-apple-darwin17.4.0julia> using Millboard                                                          julia> board = [11 12 13; 21 22 23]                                             2×3 Array{Int64,2}: 11  12  13 21  22  23julia> table(board)                                                             |   |  1 |  2 |  3 ||---|----|----|----|| 1 | 11 | 12 | 13 || 2 | 21 | 22 | 23 |julia> table(board, colnames=["x" "y" "z"], rownames=["A" "B"])                 |   |  x |  y |  z || A | 11 | 12 | 13 || B | 21 | 22 | 23 |julia>                                                                          ~                                                                                \ No newline at end of file diff --git a/docs/src/index.md b/docs/src/index.md index de0fe6a..98e4c88 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -31,6 +31,8 @@ julia> table(board, colnames=["x" "y" "z"], rownames=["A" "B"]) | B | 21 | 22 | 23 | ``` +![table.svg](./assets/millboard/table.svg) + * `Millboard.set_table_mode` : to change the display mode - `:markdown` (default) @@ -100,22 +102,3 @@ julia> table(board) | 3x1 | 3 | +-----+-------+ ``` - - -# Install - -```julia -λ ~$ julia - _ - _ _ _(_)_ | A fresh approach to technical computing - (_) | (_) (_) | Documentation: https://docs.julialang.org - _ _ _| |_ __ _ | Type "?help" for help. - | | | | | | |/ _` | | - | | |_| | | | (_| | | Version 0.6.0 (2017-06-19 13:05 UTC) - _/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release -|__/ | x86_64-apple-darwin13.4.0 - -julia> Pkg.add("Millboard") - -julia> Pkg.checkout("Millboard", "master") -```