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

Unable to tangle using org-tangle; no errors #1

Closed
kaushalmodi opened this Issue Oct 3, 2018 · 3 comments

Comments

Projects
None yet
2 participants
@kaushalmodi

kaushalmodi commented Oct 3, 2018

Hello,

I was able to install org-tangle using the nightly build of Rust.

I quickly tried it out on one of the test files for my Nim implementation ntangle, but nothing got tangled out of it.

> org-tangle ./tangle_no_yes.org
- tangle : "/home/kmodi/stow/pub_dotfiles/emacs/dot-emacs.d/misc/ntangle/tests/tangle_no_yes/./tangle_no_yes.org"

Expected tangled files (test dir):

What am I missing?


Test file

#+begin_src nim :tangle no
echo "this block won't get tangled"
#+end_src

#+begin_src nim :tangle yes
echo "this will be tangled to tangle_no_yes.nim"
#+end_src

#+begin_src nim :tangle specified_file.nim
echo "this will be tangled to specified_file.nim"
#+end_src
@xieyuheng

This comment has been minimized.

Show comment
Hide comment
@xieyuheng

xieyuheng Oct 3, 2018

Member

Currently only global tangle property-line is supported.
(because I only use global tangle property-line >_<)

This means only the following simple use case is covered :

#+property: tangle specified_file.nim

#+begin_src nim
echo "this will be tangled to specified_file.nim"
#+end_src
Member

xieyuheng commented Oct 3, 2018

Currently only global tangle property-line is supported.
(because I only use global tangle property-line >_<)

This means only the following simple use case is covered :

#+property: tangle specified_file.nim

#+begin_src nim
echo "this will be tangled to specified_file.nim"
#+end_src
@xieyuheng

This comment has been minimized.

Show comment
Hide comment
@xieyuheng

xieyuheng Oct 3, 2018

Member

I add some notes in the readme :: https://github.com/parsing-tech/org-rs/tree/master/org-tangle#note-about-restriction

Maybe when I need to use
code block level tangle property-line
and headline level tangle property-line,
I will handle them in this program.

Member

xieyuheng commented Oct 3, 2018

I add some notes in the readme :: https://github.com/parsing-tech/org-rs/tree/master/org-tangle#note-about-restriction

Maybe when I need to use
code block level tangle property-line
and headline level tangle property-line,
I will handle them in this program.

@kaushalmodi

This comment has been minimized.

Show comment
Hide comment
@kaushalmodi

kaushalmodi Oct 3, 2018

Hehe, I on the other hand need to add support (ntangle) for global property and subtree level property headers :P

kaushalmodi commented Oct 3, 2018

Hehe, I on the other hand need to add support (ntangle) for global property and subtree level property headers :P

@xieyuheng xieyuheng closed this Oct 4, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment