Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
{
    "name": "my project",
    "version": "1.0.0",
    "description": "my project apiDoc basic example",
    "title": "Custom apiDoc browser title",
    "url": "https://myproject.example.com/v1",
    
    
    "header": {
        "title": "My own header title",
        "filename": "header.md"
    },
    "footer": {
        "title": "My own footer title",
        "filename": "footer.md"
    }
}


header.md와 md footer.md 파일을 만들어 줍니다.

Code Block
# 헤더 파일header.md

apidoc 헤더 파일입니다.

```bash
git clone https://github.com/apidoc/apidoc && cd apidoc
npm install --prod
./bin/apidoc -i example -o /tmp/doc
$BROWSER /tmp/doc
```

...