valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

commit 738f115400a970b80d9153b2be7a80e0c8e59b75
parent 056761752d18585528fb025950fcca7f0270e713
Author: Lynn Foster <foster.j.lynn@gmail.com>
Date:   Wed, 23 Jan 2019 17:03:51 -0600

Merge pull request #414 from elf-pavlik/codeblocks

embed codeblocks
Diffstat:
M.gitignore | 4++++
Mbook.json | 14+++++++++++++-
Mdocs/introduction/agents.md | 9++++++---
Rexamples/agent-examples.yaml -> examples/agents.yaml | 0
Mpackage.json | 4++++
5 files changed, 27 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -5,3 +5,6 @@ npm-debug.log .build *~ +yarn.lock + +_book+ \ No newline at end of file diff --git a/book.json b/book.json @@ -1,3 +1,15 @@ { - "root": "./docs" + "root": "./docs", + "plugins": [ + "-highlight", + "include-codeblock", + "prism" + ], + "pluginsConfig": { + "prism": { + "css": [ + "prismjs/themes/prism-twilight.css" + ] + } + } } diff --git a/docs/introduction/agents.md b/docs/introduction/agents.md @@ -8,8 +8,7 @@ We also want to acknowledge that some people prefer to think of themselves as in So, if people want to form a group that has agency as a group, fine. If people want to consider that their group does not have agency as a group, also fine. Not all groups, and especially not all networks, will be vf:Agents. That depends on the agreement of the people in the group. Note that within the vocabulary, network formations will appear, as agents have economic interactions with each other in the world. This does not mean that the network is necessarily a vf:Agent. - -#### Agent Relationships +## Agent Relationships Agent relationships have many nuances, thus the ability to define one's own kinds of relationships. For example people might "participate" with an organization by means of agreeing to terms and conditions. Or people might have more active "membership" in a group or organization. Or people might consider themselves members but want a more independently flavored term such as "affiliates". @@ -21,6 +20,10 @@ Relationships have direction: For example, in "Michael is a member of Enspiral", Relationships can be in a context (or not): For example, "Kathy is mentor of Sam, in the context of Enspiral." -#### Agent Diagram +## Agent Diagram ![agent model](https://rawgit.com/valueflows/valueflows/master/release-doc-in-process/agent.svg) + +## Examples + +[import, lang:"yaml"](../../examples/agents.yaml) diff --git a/examples/agent-examples.yaml b/examples/agents.yaml diff --git a/package.json b/package.json @@ -1,5 +1,6 @@ { "scripts": { + "start": "gitbook serve", "build": "mkdir -p .build && npm run build-docs && npm run build-ns", "build-docs": "mkdir -p .build/docs && cp README.md .build/docs/index.md", "build-ns": "mkdir -p .build/ns && cp context.jsonld .build/ns/base.jsonld", @@ -14,5 +15,8 @@ "mdast-html": "^1.2.1", "mdast-slug": "^2.0.0", "turtle-validator": "^1.0.2" + }, + "devDependencies": { + "gitbook-cli": "^2.3.2" } }