-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install fails on Mac OS x #6
Comments
Looks like perhaps a simple typo?
per |
Thanks, @dragonstyle. That was definitely user error on my part. The install produced an
Is there some way I can install this extension and distribute with my document? Otherwise, this is going to be too hard for me and people I'd like to run this document to use. Which is too bad, because this is exactly the extension I want. I wrote one myself in Java for a previous set of documentation I was writing 15 years ago, but don't want to go down that rabbit hole again. |
Worked for me running within the repo's |
There is a sample I created. I used:
---
title: "My Document"
filters:
- include-code-files
---
```{.python include="script.py"}
```
# Program to add two matrices using nested loop
X = [[12,7,3],
[4 ,5,6],
[7 ,8,9]]
Y = [[5,8,1],
[6,7,3],
[4,5,9]]
result = [[0,0,0],
[0,0,0],
[0,0,0]]
# iterate through rows
for i in range(len(X)):
# iterate through columns
for j in range(len(X[0])):
result[i][j] = X[i][j] + Y[i][j]
for r in result:
print(r)
|
Thanks for all the help. I just created a PR that adds a note to README.md explaining that the P.S. Thanks for the extension---it's just what I need! |
I'm not sure what I'm supposed to be doing but the instructions as given on the README.md don't work for me.
And then I put this in my Yaml:
and then I run and it fails with this message when doing the final rendering:
After I run the install, I can't find the
include-code-filters
anywhere on my OS.The text was updated successfully, but these errors were encountered: