Errors

Config File Not Found

When you run aigis with arguments, Aigis will be looking for aigis_config.yml from the directory the command was executed. If Aigis couldn't find aigis_config.yml, Error message will be displayed on your console as follows.

$ [Error] Config File Not Found

How to

Fails install on Windows

https://github.com/nodejs/node-gyp/issues/629

use */ in document comment

When you want to use "*/" in document comment, you can use HTML entity wrapped HTML tag like below:

<code>&#042;&#047;</code>

use ′′′ in document comment

When you want to use ′′′ in document comment, you can use HTML entity wapped HTML tag like below:

<code>&#8242;&#8242;&#8242;</code>

use ′′′ in code block

When you want to use "′′′" in code block, you can use ′′′′ instead of ′′′ like below:

````

```html
<a class="btn">Button</a>
```

````