Git Product home page Git Product logo

doxygen-example's Introduction

Doxygen Example

This file is an example of documentation that is generated by Doxygen.

You can find the Doxygen info here.

You can find the license info here.

I made a logo from wix.com:

logo

Looks awesome right?

Also, see here to enter github pages.

Contents

  1. Introduction
  2. Doxygen Note
  3. To-do List

Doxygen Note

Installation

Ubuntu 20.04

For Ubuntu 20.04, before installing the Doxygen, some other packages/libraries should be installed first. The following list can be helpful:

  1. CMake: one can directly download the binary .sh file from CMake Download, and run something like: /bin/sh cmake-3.22.1-linux-x86_64.sh.
  2. GNU flex: simply run: sudo apt-get update and sudo apt-get install flex.
  3. GNU bison: sudo apt-get update and sudo apt-get install binson.
  4. libiconv: follow the guide here: Installing libiconv on Ubuntu Linux

After all that, you can install the Doxygen from source:

git clone https://github.com/doxygen/doxygen.git
cd doxygen

mkdir build
cd build
cmake -G "Unix Makefiles" ..
make

sudo make install

Comment Blocks

  1. You can use either

    /** Line 1
     *  Line 2
     *  Line 3
     */
    Constructor()
    

    or

    Constructor() /**< Line 1
    	       *   Line 2
    	       *   Line 3
    	       */
    

back to top

Special Comannds

  1. To jump to a function or parameter, you can use @see FOO to point it out.

  2. To display a parameter and describe its usage, you can use @param FOO The example parameter.

  3. To start a new line, one could use <br> or \n.

back to top

To-do List

  • Make table of contents.
  • Add more comments in this example.

back to top

doxygen-example's People

Contributors

chao8219 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.