Skip to content
Snippets Groups Projects
Commit 5bdccdaf authored by Harsha Rani's avatar Harsha Rani
Browse files

various cleanup in doc folder

parent d3dbb49e
No related branches found
No related tags found
No related merge requests found
Showing
with 14 additions and 2 deletions
......@@ -772,7 +772,6 @@ INPUT = ../../moose-core/basecode \
../../moose-core/msg \
../../moose-core/randnum \
../../moose-core/pymoose \
../../moose-core/sbml \
../../moose-core/scheduling \
../../moose-core/shell \
../../moose-core/signeur \
......
docs/images/func.png

6.05 KiB | W: | H:

docs/images/func.png

8.25 KiB | W: | H:

docs/images/func.png
docs/images/func.png
docs/images/func.png
docs/images/func.png
  • 2-up
  • Swipe
  • Onion skin
File moved
File moved
docs/user/images/rdes2_passive_squid.png

23.9 KiB

docs/user/images/rdes3_squid.png

32 KiB

docs/user/images/rdes4_osc.png

44.1 KiB

docs/user/images/rdes5_reacdiff.png

126 KiB

docs/user/images/rdes6_multiscale.png

37.5 KiB

docs/user/images/rdes7_passive.png

33.4 KiB

docs/user/images/rdes8_active.png

64.8 KiB

docs/user/images/rdes9_spiny_active.png

181 KiB

......@@ -242,6 +242,7 @@ but they make the assumption that the **E.S** is in a quasi-steady-state with **
Summation object can be used to add specified variable values. The variables can be input from pool object.
* **Icon**: This is **Σ** in the example image below. The input pools **'A'** and **'B'** connect to the **Σ** with blue arrows. The function ouput's to BuffPool
![](../../images/func.png)
### [Model operations](#TOC)
......
import os
import subprocess
file_list = ["MooseGuiDocs","Kkit12Documentation","RdesigneurDocumentation"]
file_list = ["MooseGuiDocs","Kkit12Documentation"]
DOCUMENTATION_DESTINATION_DIR = '../GUI/'
SOURCE_EXTENSION = '.markdown'
......@@ -12,3 +12,15 @@ for filename in file_list:
command = 'pandoc -s {0} -o {1}'.format(source_file, output_file)
print(command)
subprocess.call(command.split(' '))
file_list = ["RdesigneurDocumentation"]
DOCUMENTATION_DESTINATION_DIR = '../Rdesigneur/'
SOURCE_EXTENSION = '.markdown'
OUTPUT_EXTENSION = '.rst'
for filename in file_list:
source_file = filename + SOURCE_EXTENSION
output_file = DOCUMENTATION_DESTINATION_DIR + filename + OUTPUT_EXTENSION
command = 'pandoc -s {0} -o {1}'.format(source_file, output_file)
print(command)
subprocess.call(command.split(' '))
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment