Glad to help.  If you do end up figuring out how to parse tiddlywiki 
wikitext in python/bash, please post about it to the group.  

On Thursday, May 24, 2018 at 10:43:30 AM UTC-4, j3d1H wrote:
>
> Matthew Lauber: Sorry for getting back to you so late, but this works 
> perfectly for what I need! Thank you.
>
> On Friday, May 18, 2018 at 11:28:05 AM UTC-4, Matthew Lauber wrote:
>>
>> I don't think there's really anything else someone's made.  You can try 
>> to do HTML munging using BeautifulSoup in python.  Should be able to use 
>> something like:
>>
>> with open("NameOfFile.html") as f:
>>  soup = BeautifulSoup(f.read(), "html.parser")
>>
>>
>> soup.find_all('div', attrs={'title': 'NameOfTiddler'})
>>
>> That'll get the the Div that represents the tiddler, but you'll have to 
>> figure out how to parse it.  And it relies on BeautifulSoup4, which you can 
>> get with 
>> pip install beautifulsoup4
>>
>>
>>
>>
>> On Friday, May 18, 2018 at 8:20:29 AM UTC-4, j3d1H wrote:
>>>
>>> Jed: I would really rather not use node, it hasn't worked very well for 
>>> me in the past. Any other possible solution?
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a7127dd1-d5c1-4917-9761-bae4c3acb90d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to