Skip to content

Commit

Permalink
center image in main readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bobluppes committed May 29, 2023
1 parent e3b5884 commit 4c52566
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
# ![graaf](docs/img/graaf.png) Graaf
[![Main-CI](https://github.com/bobluppes/graaf/actions/workflows/main-ci.yml/badge.svg)](https://github.com/bobluppes/graaf/actions/workflows/main-ci.yml)
[![codecov](https://codecov.io/github/bobluppes/graaf/branch/main/graph/badge.svg?token=ZFBLNFN39C)](https://codecov.io/github/bobluppes/graaf)
[![Documentation](https://img.shields.io/badge/documentation-doxygen-informational)](https://bobluppes.github.io/graaf/)
[![License](https://img.shields.io/badge/license-MIT-black)](LICENSE.md)
<center style="margin-bottom:32px;">
<p style="position:relative; transform: translateX(-8%); margin-bottom:0px; font-size:36px; font-weight: bolder;">
<img src="./docs/img/graaf.png">
<span style="position:absolute; bottom:30px;"> raaf Lib</span>
</p>

Graaf is a general-purpose lightweight C++ library designed for versatile graph operations. Graaf allows users to easily create, modify, and query graphs. It is well-suited for various graph-based applications, including social network analysis, CNNs, and more.
<hr>

## Features
<!-- SHORT DESCRIPTION -->
<p style="margin-bottom:16px;">
Graaf is a general-purpose lightweight C++ library designed for versatile graph operations. Graaf allows users to easily create, modify, and query graphs. It is well-suited for various graph-based applications, including social network analysis, CNNs, and more.
</p>

<!-- BADGES -->
[![Main-CI](https://github.com/bobluppes/graaf/actions/workflows/main-ci.yml/badge.svg)](https://github.com/bobluppes/graaf/actions/workflows/main-ci.yml)
[![codecov](https://codecov.io/github/bobluppes/graaf/branch/main/graph/badge.svg?token=ZFBLNFN39C)](https://codecov.io/github/bobluppes/graaf)
[![Documentation](https://img.shields.io/badge/documentation-doxygen-informational)](https://bobluppes.github.io/graaf/)
[![License](https://img.shields.io/badge/license-MIT-black)](LICENSE.md)

</center>

# Features
The Graaf library is designed with generality in mind. As such, it comes with specializations for a `directed_graph` as well as an `undirected_graph`. Furthermore, it can be used to store user-defined vertex and edge classes:

```c++
Expand Down

0 comments on commit 4c52566

Please sign in to comment.