csvlm 0.1.3

Language management through CSV tables
Documentation

CSV Language Manager

Manage multiple languages through CSV tables.

Getting Started

In this walkthrough, we'll be using Google Sheets as a tool. ###Step 1 - Creating a Table

As you can see, a table with IDs in the first column, and languages in the first row should be created. This should be relatively easy to comprehend.

###Step 2 - Save Table as .csv

###Step 3 - Add csvlm as Dependency

  1. In your cargo.toml add
[dependencies]
// Assign latest version (Might not be the one saying)
csvlm = "0.1.2"

use csvlm::Manager;


###Step 4 - Create Manager & Parse
Now we need a manager that parses the information for us
```Rust
// The parameters are directory, filename & extension
// My file is located outside of the project
let mut manag = Manager::new("..", "test_table", ".txt");

// Then parse the file assigned
manag.parse();