Skip to content

Commit

Permalink
add some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
alistaircol committed Jul 9, 2022
1 parent e6f71cc commit 1100360
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 16 deletions.
8 changes: 6 additions & 2 deletions src/php.dot
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ digraph {
subgraph cluster_php_docs {
graph [style = "invis"];

doxygen [${SKILLS_NODE_STYLE_TERTIARY} label = "Doxygen" URL = "https://www.doxygen.nl/index.html"];
phpdoc [${SKILLS_NODE_STYLE_TERTIARY} label = "phpdoc" URL = "https://www.phpdoc.org/"];
doctum [${SKILLS_NODE_STYLE_TERTIARY} label = "doctum" URL = "https://github.com/code-lts/doctum"];
openapi [${SKILLS_NODE_STYLE_TERTIARY} label = "openapi" URL = "https://openapi-generator.tech/"];

php_docs -> doxygen ${SKILLS_EDGE_TERTIARY};
php_docs -> phpdoc ${SKILLS_EDGE_TERTIARY};
php_docs -> doctum ${SKILLS_EDGE_TERTIARY};
php_docs -> openapi ${SKILLS_EDGE_TERTIARY};
}
php -> php_docs ${SKILLS_EDGE_SECONDARY};

Expand Down
23 changes: 15 additions & 8 deletions src/skills.dot
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,16 @@ digraph {
subgraph cluster_ssg {
graph [style = "invis"];

mkdocs [${SKILLS_NODE_STYLE_SECONDARY} label = "mkdocs" URL = "https://www.mkdocs.org"];
nuxt [${SKILLS_NODE_STYLE_SECONDARY} label = "nuxt" URL = "https://nuxtjs.org"];
hugo [${SKILLS_NODE_STYLE_SECONDARY} label = "hugo" URL = "https://gohugo.io"];
mkdocs [${SKILLS_NODE_STYLE_SECONDARY} label = "mkdocs" URL = "https://www.mkdocs.org"];
nuxt [${SKILLS_NODE_STYLE_SECONDARY} label = "nuxt" URL = "https://nuxtjs.org"];
hugo [${SKILLS_NODE_STYLE_SECONDARY} label = "hugo" URL = "https://gohugo.io"];
docusaurus [${SKILLS_NODE_STYLE_SECONDARY} label = "docusaurus" URL = "https://docusaurus.io/"];

ssg -> mkdocs ${SKILLS_EDGE_SECONDARY};
ssg -> nuxt ${SKILLS_EDGE_SECONDARY};
ssg -> hugo ${SKILLS_EDGE_SECONDARY};
ssg -> docusaurus ${SKILLS_EDGE_SECONDARY};

ssg -> mkdocs ${SKILLS_EDGE_SECONDARY};
ssg -> nuxt ${SKILLS_EDGE_SECONDARY};
ssg -> hugo ${SKILLS_EDGE_SECONDARY};
}
me -> ssg ${SKILLS_EDGE_PRIMARY};

Expand Down Expand Up @@ -234,9 +237,13 @@ digraph {
subgraph cluster_php_docs {
graph [style = "invis"];

doxygen [${SKILLS_NODE_STYLE_TERTIARY} label = "Doxygen" URL = "https://www.doxygen.nl/index.html"];
phpdoc [${SKILLS_NODE_STYLE_TERTIARY} label = "phpdoc" URL = "https://www.phpdoc.org/"];
doctum [${SKILLS_NODE_STYLE_TERTIARY} label = "doctum" URL = "https://github.com/code-lts/doctum"];
openapi [${SKILLS_NODE_STYLE_TERTIARY} label = "openapi" URL = "https://openapi-generator.tech/"];

php_docs -> doxygen ${SKILLS_EDGE_TERTIARY};
php_docs -> phpdoc ${SKILLS_EDGE_TERTIARY};
php_docs -> doctum ${SKILLS_EDGE_TERTIARY};
php_docs -> openapi ${SKILLS_EDGE_TERTIARY};
}
php -> php_docs ${SKILLS_EDGE_SECONDARY};

Expand Down
14 changes: 8 additions & 6 deletions src/ssg.dot
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ digraph {
subgraph cluster_ssg {
graph [style = "invis"];

mkdocs [${SKILLS_NODE_STYLE_SECONDARY} label = "mkdocs" URL = "https://www.mkdocs.org"];
nuxt [${SKILLS_NODE_STYLE_SECONDARY} label = "nuxt" URL = "https://nuxtjs.org"];
hugo [${SKILLS_NODE_STYLE_SECONDARY} label = "hugo" URL = "https://gohugo.io"];
mkdocs [${SKILLS_NODE_STYLE_SECONDARY} label = "mkdocs" URL = "https://www.mkdocs.org"];
nuxt [${SKILLS_NODE_STYLE_SECONDARY} label = "nuxt" URL = "https://nuxtjs.org"];
hugo [${SKILLS_NODE_STYLE_SECONDARY} label = "hugo" URL = "https://gohugo.io"];
docusaurus [${SKILLS_NODE_STYLE_SECONDARY} label = "docusaurus" URL = "https://docusaurus.io/"];

ssg -> mkdocs ${SKILLS_EDGE_SECONDARY};
ssg -> nuxt ${SKILLS_EDGE_SECONDARY};
ssg -> hugo ${SKILLS_EDGE_SECONDARY};
ssg -> mkdocs ${SKILLS_EDGE_SECONDARY};
ssg -> nuxt ${SKILLS_EDGE_SECONDARY};
ssg -> hugo ${SKILLS_EDGE_SECONDARY};
ssg -> docusaurus ${SKILLS_EDGE_SECONDARY};
}
}

0 comments on commit 1100360

Please sign in to comment.